diff options
author | CJB <cjbok@ziggo.nl> | 2016-03-29 08:11:32 +0200 |
---|---|---|
committer | CJB <cjbok@ziggo.nl> | 2016-03-29 08:11:32 +0200 |
commit | ffa79381070ddfcfdbc75254587205325b87b5ea (patch) | |
tree | 4c199f1d2db09bb0b820661ae89995715779ca27 /StardewModdingAPI/Inheritance | |
parent | d952f836430933ca7b7e378405f51015007804f9 (diff) | |
download | SMAPI-ffa79381070ddfcfdbc75254587205325b87b5ea.tar.gz SMAPI-ffa79381070ddfcfdbc75254587205325b87b5ea.tar.bz2 SMAPI-ffa79381070ddfcfdbc75254587205325b87b5ea.zip |
Crash fix
Diffstat (limited to 'StardewModdingAPI/Inheritance')
-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)
{
|