From aff932295b665676eb5ade9f05d99edd101f1d87 Mon Sep 17 00:00:00 2001 From: minenice55 Date: Mon, 8 Jan 2024 23:48:47 -0500 Subject: [PATCH] make fullscreen use the proper mode on reboot --- Assets/Scripts/GlobalGameManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/GlobalGameManager.cs b/Assets/Scripts/GlobalGameManager.cs index ddded770..654e2351 100644 --- a/Assets/Scripts/GlobalGameManager.cs +++ b/Assets/Scripts/GlobalGameManager.cs @@ -117,7 +117,7 @@ namespace HeavenStudio QualitySettings.maxQueuedFrames = 2; if (PersistentDataManager.gameSettings.isFullscreen) { - Screen.SetResolution(Display.main.systemWidth, Display.main.systemHeight, FullScreenMode.ExclusiveFullScreen); + Screen.SetResolution(Display.main.systemWidth, Display.main.systemHeight, FullScreenMode.FullScreenWindow); Screen.fullScreen = true; } else