From 6888ae2189ef88a3c821211e099f2d1d60448728 Mon Sep 17 00:00:00 2001 From: Haze Weathers Date: Sun, 7 Jul 2024 15:08:56 -0400 Subject: [PATCH] EHEHE silly oversight. fullscreen works again --- autoloads/options.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoloads/options.gd b/autoloads/options.gd index 3084c05..26ec300 100644 --- a/autoloads/options.gd +++ b/autoloads/options.gd @@ -50,7 +50,7 @@ func _ready() -> void: func _unhandled_input(event: InputEvent) -> void: if Debug.entry == false: if event.is_action_pressed("fullscreen"): - _set_fullscreen(!fullscreen) + OS.window_fullscreen = not OS.window_fullscreen func load_options() -> void: var file = ConfigFile.new()