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...