I'm off to a bit of a bumpy start here.
The application compiles and runs fine, but no window is displayed (except for the console). I'm following the "Opening a window" tutorial on this site. My OS is Windows Vista 32bit.
#include <SFML/Window.hpp>
int main()
{
// Create the main window
sf::Window app(sf::VideoMode(800, 600, 32), "SFML Window");
// Start main loop
bool running = true;
while (running)
app.Display();
return EXIT_SUCCESS;
}
Is there something wrong with this code? It's the exact same code from the tutorial.