I am using vs05, have compiled and linked everything fine except for some reason when it generates the window my cpu usage shoots up to 100 and the window locks up and I have to force it closed from the task manager... Not sure why this is happening considering the only code I am using is the code for generating a simple window from the tutorial for version 1.4.
int main()
{
// Create the main window
sf::Window App(sf::VideoMode(800, 600, 32), "SFML Window");
// Start main loop
bool Running = true;
while (Running)
{
App.Display();
}
return EXIT_SUCCESS;
}
I am running on windows xp using 1.5ram, any ideas why this could would be such a memory hog? am I missing something in the settings?