Skip to content

Commit

Permalink
removed logs
Browse files Browse the repository at this point in the history
  • Loading branch information
thespbgamer committed Apr 8, 2021
1 parent 37e7780 commit d5f6239
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions ZoomLevel/ModEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ private void ChangeZoomLevel(float amount = 0)

//Caps Max Zoom Out Level
Game1.options.singlePlayerBaseZoomLevel = Game1.options.singlePlayerBaseZoomLevel <= modConfigs.MaxZoomOutLevelValue ? modConfigs.MaxZoomOutLevelValue : Game1.options.singlePlayerBaseZoomLevel;

//this.Monitor.Log($"{Game1.options.singlePlayerBaseZoomLevel}.", LogLevel.Debug);
Program.gamePtr.refreshWindowSettings();
}
else
else if (Context.IsSplitScreen)
{
this.Monitor.Log("There's no support for splitscreen.", LogLevel.Info);
//this.Monitor.Log("There's no support for splitscreen.", LogLevel.Info);
}

//this.Monitor.Log($"{Game1.options.singlePlayerBaseZoomLevel}.", LogLevel.Debug);
Program.gamePtr.refreshWindowSettings();
}

private void ChangeUILevel(float amount = 0)
Expand All @@ -93,9 +93,9 @@ private void ChangeUILevel(float amount = 0)
//this.Monitor.Log($"{Game1.options.singlePlayerDesiredUIScale}.", LogLevel.Debug);
Program.gamePtr.refreshWindowSettings();
}
else
else if (Context.IsSplitScreen)
{
this.Monitor.Log("There's no support for splitscreen.", LogLevel.Info);
//this.Monitor.Log("There's no support for splitscreen.", LogLevel.Info);
}
}
}
Expand Down

0 comments on commit d5f6239

Please sign in to comment.