VS 2010和SFML:window.display()上的访问冲突问题

时间:2015-03-05 19:54:14

标签: c++ visual-studio-2010 sfml

我最近开始在Visual c + + 2010上使用SFML。我已经链接了所有库并包含了所有必需的文件,但是当我运行“main.cpp”时,编译器仍会抛出一个未处理的异常,即

  

SFML.exe中0x00000000处的未处理异常:0xC0000005:访问冲突执行位置0x00000000。

我的节目:

#include <SFML/Graphics.hpp>

int main()
{
    sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
    sf::CircleShape shape(100.f);
    shape.setFillColor(sf::Color::Green);

    while (window.isOpen())
    {
        sf::Event event;
        while (window.pollEvent(event))
        {
            if (event.type == sf::Event::Closed)
                window.close();
        }

        //window.clear();
        window.draw(shape);
        window.display();
    }

    return 0;
}

0 个答案:

没有答案