I have following problem:
If I load and want to display a sprite, it is fully white(no image)
I am using SFML 2.0 (built it last week)
here the code:
sf::Texture Hintergrundbild;
if (!Hintergrundbild.LoadFromFile("data/Hintergrund.bmp"))
MessageBox(0,"WORLD::CreateWorld #2\nKonnte Hintergrund.bmp nicht laden!",0,0);
Hintergrund = new sf::Sprite(Hintergrundbild);
LoadFormFile returns true
Later I draw it...
Fenster->Draw(*Hintergrund);
"Fenster" is a sf::RenderWindow
I am able to move it around, but it doesn´t display the texture.