Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Haxel

Pages: [1]
1
Window / Where's my window?
« on: February 24, 2013, 08:18:31 pm »
Apologies if this has been answered before, I did search but I couldn't find the same problem experienced elsewhere..

I've just started using SFML, and I find that my very simple program will compile seemingly without errors, but won't appear to run any code. Take the example below:

#include <iostream>
#include <SFML/Graphics.hpp>

int main()
{
        std::cout << "hello sfml";
        getchar();
        sf::RenderWindow App( sf::VideoMode( 1024, 768 ), "my window" );

        ...

}

Now, I found that without any reference to sf (the last line commented out), the text is printed and the console window exits fine. But with the creation of the App window, nothing is printed, and I can't even catch the main function being hit in the debugger. The console window just sits there. So, I have no idea what's going wrong :/

I'm using VS 2008 Pro, I've added include paths for libs and dll's. It's quite a silly problem and really putting me off! Any thoughts greatly appreciated.

Cheers
Haxel

Pages: [1]