Hello. I've been using SFML for a while now and I just upgraded to MinGW GCC 4.7.2. Now, whenever I try to create a window, my program crashes. I'm using SFML 2.0 and I already tried recompiling it and using the already compiled builds posted on the forum.
Creating a window crashes my progam:
int main(int argc, char* argv[])
{
sf::Window window(sf::VideoMode(800, 600, 32), "test"); // crashes
return 0;
}
But other things don't, so as far as I know it's just the window:
int main(int argc, char* argv[])
{
sf::CircleShape circle;
circle.setFillColor(sf::Color::Blue); // won't crash
return 0;
}
Thanks in advance.