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.


Messages - Noobdev

Pages: [1]
1
General / Not sure what's happening here
« on: February 16, 2011, 06:44:08 pm »
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:

Code: [Select]

#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.

Pages: [1]
anything