Hi
In my notebook that had never had that problem it doesn't work.
Everything runs fine but sprites are not drawn. I just see the screen in the color I Cleared()
This is my code (in C#)
GameLevel.GameView = new View(new Vector2f(400, 300), new Vector2f(800, 600));
GameLevel.GameView = Screen.GetLetterboxView(GameLevel.GameView, 800, 600);
Then I call
window.SetView(GameLevel.GameView);
after all calls to
window.Clear();
I didn't handle the Resized event because I'm using fullscreen mode.
Could you tell me what is wrong?
Thanks again