Qt: Fix macro frequency not saving

This commit is contained in:
Connor McLaughlin 2022-11-29 20:42:15 +10:00
parent 71c558625e
commit b881c7e7c4
1 changed files with 3 additions and 0 deletions

View File

@ -278,6 +278,7 @@ void ControllerSettingsDialog::setBoolValue(const char* section, const char* key
else
{
Host::SetBaseBoolSettingValue(section, key, value);
Host::CommitBaseSettingChanges();
g_emu_thread->applySettings();
}
}
@ -293,6 +294,7 @@ void ControllerSettingsDialog::setIntValue(const char* section, const char* key,
else
{
Host::SetBaseIntSettingValue(section, key, value);
Host::CommitBaseSettingChanges();
g_emu_thread->applySettings();
}
}
@ -324,6 +326,7 @@ void ControllerSettingsDialog::clearSettingValue(const char* section, const char
else
{
Host::DeleteBaseSettingValue(section, key);
Host::CommitBaseSettingChanges();
g_emu_thread->applySettings();
}
}