From 473c33cfbacf016bf0440847fa469031a0e3a1d9 Mon Sep 17 00:00:00 2001 From: Jarred Wilson Date: Sun, 23 Feb 2025 13:38:59 -0600 Subject: [PATCH] fix: move fullscreen config options to GUI section of variable declarations --- src/common/config.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index a190e4da1..fddd68004 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -31,10 +31,7 @@ std::filesystem::path find_fs_path_or(const basic_value& v, const K& ky, namespace Config { -static bool isHDRAllowed = false; static bool isNeo = false; -static bool isFullscreen = false; -static std::string fullscreenMode = "Fullscreen (Borderless)"; static bool playBGM = false; static bool isTrophyPopupDisabled = false; static int BGMvolume = 50; @@ -102,6 +99,9 @@ std::vector m_recent_files; std::string emulator_language = "en_US"; static int backgroundImageOpacity = 50; static bool showBackgroundImage = true; +static bool isFullscreen = false; +static std::string fullscreenMode = "Fullscreen (Borderless)"; +static bool isHDRAllowed = false; // Language u32 m_language = 1; // english