diff options
Diffstat (limited to 'StardewModdingAPI/Inheritance/SGame.cs')
-rw-r--r-- | StardewModdingAPI/Inheritance/SGame.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/StardewModdingAPI/Inheritance/SGame.cs b/StardewModdingAPI/Inheritance/SGame.cs index c346157c..a1bc96b2 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)
{
|