From 0c78ea9bbac9a3e48e6620e91b3f1fbac8dea71b Mon Sep 17 00:00:00 2001 From: kalaposfos13 <153381648+kalaposfos13@users.noreply.github.com> Date: Tue, 12 May 2026 16:17:06 +0200 Subject: [PATCH] Swap Update and Defaults button order in settings migration popup (#4399) --- src/core/emulator_settings.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/emulator_settings.cpp b/src/core/emulator_settings.cpp index 8ff7df1de..7e41cdb75 100644 --- a/src/core/emulator_settings.cpp +++ b/src/core/emulator_settings.cpp @@ -391,8 +391,8 @@ bool EmulatorSettingsImpl::Load(const std::string& serial) { if (std::filesystem::exists(Common::FS::GetUserPath(Common::FS::PathType::UserDir) / "config.toml")) { SDL_MessageBoxButtonData btns[2]{ - {0, 0, "Defaults"}, - {0, 1, "Update"}, + {0, 0, "Update"}, + {0, 1, "Defaults"}, }; SDL_MessageBoxData msg_box{ 0, @@ -407,7 +407,7 @@ bool EmulatorSettingsImpl::Load(const std::string& serial) { }; int result = 1; SDL_ShowMessageBox(&msg_box, &result); - if (result == 1) { + if (result == 0) { if (TransferSettings()) { m_loaded = true; Save();