SFML community forums
Help => General => Topic started by: McKnas on August 12, 2011, 11:50:39 am
-
I have had sfml working before the summer but then i took a break and haven't been using it. Now i suddenly doesn't work?!? System things seems to work but as soon as i try to initialize a window it locks up at start and i only see an empty console window:/
#include <SFML/System.hpp>
#include <SFML/Window.hpp>
#include <iostream>
int main()
{
std::cout << "Hello";
sf::Window App(sf::VideoMode(800, 600, 32), "SFML Window");
sf::Sleep(1000);
App.Close();
return 0;
}
In this code "Hello" isn't even printed, but without the sf::Window it is...
-
ATI graphics card?
-
Yeah, common problem?
-
Yeah, common problem?
Indeed... search "ATI" on the forum and you'll see the huge amount of posts related to this problem ;)
-
Ok, thanks for the fast reply!
Hope i'll get it working :)