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