diff options
author | Zoryn <Zoryn4163@users.noreply.github.com> | 2016-03-28 22:19:29 -0400 |
---|---|---|
committer | Zoryn <Zoryn4163@users.noreply.github.com> | 2016-03-28 22:19:29 -0400 |
commit | d681cfd54d0fe20f386e6964e68178d7fb104525 (patch) | |
tree | 3eaefba712d4a33fcb869dd97ab6cd5dba777ce5 /StardewModdingAPI/Inheritance/SGame.cs | |
parent | a0e1695525f948c54ffb2d9bf91851c42218f0d6 (diff) | |
parent | 07a0b94e5504b4aa4494af822780c4fdd21455b7 (diff) | |
download | SMAPI-d681cfd54d0fe20f386e6964e68178d7fb104525.tar.gz SMAPI-d681cfd54d0fe20f386e6964e68178d7fb104525.tar.bz2 SMAPI-d681cfd54d0fe20f386e6964e68178d7fb104525.zip |
Merge pull request #79 from Zoryn4163/master
i dont even know why that was there
Diffstat (limited to 'StardewModdingAPI/Inheritance/SGame.cs')
-rw-r--r-- | StardewModdingAPI/Inheritance/SGame.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/StardewModdingAPI/Inheritance/SGame.cs b/StardewModdingAPI/Inheritance/SGame.cs index b306422a..42de205d 100644 --- a/StardewModdingAPI/Inheritance/SGame.cs +++ b/StardewModdingAPI/Inheritance/SGame.cs @@ -430,11 +430,11 @@ namespace StardewModdingAPI.Inheritance QueueDebugMessage("FPS: " + FramesPerSecond);
UpdateEventCalls();
- if (ZoomLevelIsOne)
+ /*if (ZoomLevelIsOne)
{
options.zoomLevel = 0.99f;
InvokeBasePrivateInstancedMethod("Window_ClientSizeChanged", null, null);
- }
+ }*/
if (FramePressedKeys.Contains(Keys.F3))
{
@@ -1107,7 +1107,7 @@ namespace StardewModdingAPI.Inheritance }
}
spriteBatch.End();
- base.Draw(gameTime);
+ //base.Draw(gameTime);
spriteBatch.Begin(SpriteSortMode.FrontToBack, BlendState.AlphaBlend, SamplerState.PointClamp, null, null);
if (eventUp && currentLocation.currentEvent != null)
{
|