diff --git a/DangerousD/GameCore/Managers/AppManager.cs b/DangerousD/GameCore/Managers/AppManager.cs index 35fd275..5bbf0f4 100644 --- a/DangerousD/GameCore/Managers/AppManager.cs +++ b/DangerousD/GameCore/Managers/AppManager.cs @@ -101,6 +101,7 @@ namespace DangerousD.GameCore { GraphicsDevice.Clear(Color.CornflowerBlue); + GraphicsDevice.SetRenderTarget(renderTarget); switch (gameState) { case GameState.Menu: @@ -124,6 +125,7 @@ namespace DangerousD.GameCore break; } + base.Draw(gameTime); }