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 - Genion

Pages: [1]
1
Graphics / SFML2 Exception while drawing sf::Text
« on: December 30, 2010, 11:42:12 pm »
Damn... don't be so fast! :lol:
Thanks for fixing.

2
Graphics / SFML2 Exception while drawing sf::Text
« on: December 30, 2010, 10:53:47 pm »
Hi,

I just wanted to upgrade my project from SFML1.6 to SFML2.0. It throws an exception (Vector iterator not dereferencable)

I compiled the latest snapshot from the SVN and compiled it with VS10 as a static library.

Code: [Select]
#include <SFML/Graphics.hpp>

int main(void)
{
    sf::RenderWindow app;
    app.Create(sf::VideoMode(800, 600), "Foobar");
    sf::Font font;
    font.LoadFromFile("comic.ttf");
    sf::Text text("Foobar");
    while(app.IsOpened())
    {
        sf::Event evt;
        while(app.GetEvent(evt))
        {
            if(evt.Type == sf::Event::Closed)
                app.Close();
        }
        app.Clear(sf::Color::Magenta);
        app.Draw(text); // Here it happens
        app.Display();
    }
}


Is it a bug or did I miss something?

Thanks
Cookie addicted Genion

Pages: [1]
anything