Ok, I did the first tutorial with the Clock stuff, worked fine. When I moved onto the window tutorial, I'm only getting an empty console window...
I've linked the project with dlls and declared that with Code::Blocks 10.05, reconfigured the IDE to use the minGW from the tutorial page. I'm running Windows 7, with an ATI Radeon gc, is this the possible problem?
here is the code from the file, although it's pretty much duplicated from the tutorial:
#include <SFML/Window.hpp>
int main() {
sf::Window App(sf::VideoMode(1024, 768, 32), "SFML Window");
bool running = true;
while(running) {
App.Display();
}
return EXIT_SUCCESS;
}
Any thoughts would be great, thanks.