我最近开始在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;
}