My window won't appear anymore. It used to work, I could already see and move around sprites, but for no apparent reason now my program won't get past the very first line:
int main()
{
g_window = new sf::RenderWindow(sf::VideoMode(1080, 720), "MyGame");
// ...never reaches here
If I put code before that line with a breakpoint, it works. But as soon as it reaches that line, it's like an infinite loop... And the window never appears.