diff options
Diffstat (limited to 'StardewModdingAPI/Inheritance/SGame.cs')
-rw-r--r-- | StardewModdingAPI/Inheritance/SGame.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/StardewModdingAPI/Inheritance/SGame.cs b/StardewModdingAPI/Inheritance/SGame.cs index c346157c..c7ad1436 100644 --- a/StardewModdingAPI/Inheritance/SGame.cs +++ b/StardewModdingAPI/Inheritance/SGame.cs @@ -962,7 +962,7 @@ namespace StardewModdingAPI.Inheritance }
}
spriteBatch.End();
- GraphicsDevice.SetRenderTarget(!ZoomLevelIsOne ? null : Screen);
+ GraphicsDevice.SetRenderTarget(ZoomLevelIsOne ? null : Screen);
}
if (bloomDay)
{
@@ -1158,7 +1158,7 @@ namespace StardewModdingAPI.Inheritance spriteBatch.End();
- base.Draw(gameTime);
+ //base.Draw(gameTime);
/*try
{
|