Fixed fullscreen indication
parent
d24c224d1d
commit
7063305510
|
@ -87,8 +87,7 @@ namespace stardew_access.Patches
|
||||||
|
|
||||||
if (__instance.windowedButton.containsPoint(Game1.getMouseX(true), Game1.getMouseY(true)))
|
if (__instance.windowedButton.containsPoint(Game1.getMouseX(true), Game1.getMouseY(true)))
|
||||||
{
|
{
|
||||||
bool isFullscreen = Game1.options.isCurrentlyFullscreen();
|
toSpeak = "Fullscreen: " + ((Game1.isFullscreen) ? "on" : "off");
|
||||||
toSpeak = "Fullscreen: " + ((isFullscreen) ? "on" : "off");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (TitleMenu.subMenu != null && __instance.backButton.containsPoint(Game1.getMouseX(true), Game1.getMouseY(true)))
|
if (TitleMenu.subMenu != null && __instance.backButton.containsPoint(Game1.getMouseX(true), Game1.getMouseY(true)))
|
||||||
|
|
Loading…
Reference in New Issue