0
所以我試圖讓SFML與Visual C++ 2010一起工作,它現在會打開窗口,但它看起來像這樣。 SFML RenderWindow奇怪的字符
當您嘗試移動或關閉窗口時,窗口也不響應。 這裏是我的代碼:
////////////////////////////////////////////////////////////
// Headers
////////////////////////////////////////////////////////////
#include <SFML/Graphics.hpp>
int main()
{
// Create the main window
sf::RenderWindow App(sf::VideoMode(800, 600, 32), "SFML Window");
while (true)
{
App.Clear();
App.Display();
}
return EXIT_SUCCESS;
}