diff options
author | CJB <cjbok@ziggo.nl> | 2016-03-29 08:17:30 +0200 |
---|---|---|
committer | CJB <cjbok@ziggo.nl> | 2016-03-29 08:17:30 +0200 |
commit | ce260ef82deca2b44e85733b757532aa446cac10 (patch) | |
tree | 743951a9944442a46c46528fc6295af8bf95208d /StardewModdingAPI | |
parent | ffa79381070ddfcfdbc75254587205325b87b5ea (diff) | |
download | SMAPI-ce260ef82deca2b44e85733b757532aa446cac10.tar.gz SMAPI-ce260ef82deca2b44e85733b757532aa446cac10.tar.bz2 SMAPI-ce260ef82deca2b44e85733b757532aa446cac10.zip |
Revert "Crash fix"
This reverts commit ffa79381070ddfcfdbc75254587205325b87b5ea.
Diffstat (limited to 'StardewModdingAPI')
-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 a1bc96b2..c346157c 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)
{
|