From 84b136c99473b0e1d3b9e1f200ad95e0aec2dac1 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Fri, 6 Feb 2026 03:43:35 -0600 Subject: [PATCH] BootManager: Fix "enumeration value not handled in switch" warning. --- Source/Core/Core/BootManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/BootManager.cpp b/Source/Core/Core/BootManager.cpp index ea26339e57..affa3f3d53 100644 --- a/Source/Core/Core/BootManager.cpp +++ b/Source/Core/Core/BootManager.cpp @@ -117,7 +117,7 @@ bool BootCore(Core::System& system, std::unique_ptr boot, case DiscIO::Region::NTSC_K: Config::SetCurrent(Config::SYSCONF_COUNTRY, 0x88); // South Korea break; - case DiscIO::Region::Unknown: + default: break; } }