Qt: Fix incorrect settings save after automap

This commit is contained in:
Stenzek
2026-04-30 23:54:48 +10:00
parent 30583b4440
commit 00c956f4a0
@@ -1083,13 +1083,13 @@ void MultipleDeviceAutobindDialog::doAutomaticBinding()
{
if (global)
{
QtHost::SaveGameSettings(si, false);
g_core_thread->reloadGameSettings(false);
QtHost::QueueSettingsSave();
g_core_thread->reloadInputBindings();
}
else
{
QtHost::QueueSettingsSave();
g_core_thread->reloadInputBindings();
QtHost::SaveGameSettings(si, false);
g_core_thread->reloadGameSettings(false);
}
accept();
}