From 9de6f000112602ee5aa2559e40696504c7d084df Mon Sep 17 00:00:00 2001 From: Jarred Wilson Date: Sun, 23 Feb 2025 13:40:51 -0600 Subject: [PATCH] fix:[#2514] set display mode default to windowed --- src/common/config.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index fddd68004..cc3b86315 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -100,7 +100,7 @@ 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 std::string fullscreenMode = "Windowed"; static bool isHDRAllowed = false; // Language @@ -740,8 +740,7 @@ void load(const std::filesystem::path& path) { shouldPatchShaders = toml::find_or(gpu, "patchShaders", true); vblankDivider = toml::find_or(gpu, "vblankDivider", 1); isFullscreen = toml::find_or(gpu, "Fullscreen", false); - fullscreenMode = - toml::find_or(gpu, "FullscreenMode", "Fullscreen (Borderless)"); + fullscreenMode = toml::find_or(gpu, "FullscreenMode", "Windowed"); isHDRAllowed = toml::find_or(gpu, "allowHDR", false); }