diff options
author | Zoryn Aaron <zoryn4163@gmail.com> | 2016-03-28 22:18:44 -0400 |
---|---|---|
committer | Zoryn Aaron <zoryn4163@gmail.com> | 2016-03-28 22:18:44 -0400 |
commit | 07a0b94e5504b4aa4494af822780c4fdd21455b7 (patch) | |
tree | 3eaefba712d4a33fcb869dd97ab6cd5dba777ce5 /StardewModdingAPI/Inheritance/SGame.cs | |
parent | 91c156678c0b694160f5461245968c9b4a0cd4f1 (diff) | |
download | SMAPI-07a0b94e5504b4aa4494af822780c4fdd21455b7.tar.gz SMAPI-07a0b94e5504b4aa4494af822780c4fdd21455b7.tar.bz2 SMAPI-07a0b94e5504b4aa4494af822780c4fdd21455b7.zip |
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)
{
|