From d6a6c2f05c8f6c542255b75e2ed691c64d2427bb Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Sun, 24 Dec 2023 18:08:33 +0530 Subject: [PATCH] fix resize --- src/Settings.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Settings.hx b/src/Settings.hx index 7eef67a8..02a631ca 100644 --- a/src/Settings.hx +++ b/src/Settings.hx @@ -165,7 +165,7 @@ class Settings { public static function applySettings() { #if hl Window.getInstance().resize(optionsSettings.screenWidth, optionsSettings.screenHeight); - Window.getInstance().displayMode = optionsSettings.isFullScreen ? FullscreenResize : Windowed; + Window.getInstance().displayMode = optionsSettings.isFullScreen ? Fullscreen : Windowed; #end AudioManager.updateVolumes();