From 56bc5b8ba05f7262868e0c2993de07c981530e37 Mon Sep 17 00:00:00 2001 From: Zoryn Aaron Date: Tue, 29 Mar 2016 06:23:42 -0400 Subject: bug fix according to @CJBok on 07a0b94 --- StardewModdingAPI/Inheritance/SGame.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'StardewModdingAPI/Inheritance') 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 { -- cgit