Qt: Fix global volume slider overriding per-game

This commit is contained in:
Stenzek 2023-08-27 13:21:16 +10:00 committed by Connor McLaughlin
parent 62c67435e6
commit 94670baa64
1 changed files with 14 additions and 10 deletions

View File

@ -251,23 +251,27 @@ void AudioSettingsWidget::volumeChanged(int value)
sif->SetIntValue("SPU2/Mixing", "FinalVolume", value);
sif->Save();
// There's two separate interfaces - one we're editing, and the active one.
// We need to reload the latter.
g_emu_thread->reloadGameSettings();
}
else
{
Host::SetBaseIntSettingValue("SPU2/Mixing", "FinalVolume", value);
Host::CommitBaseSettingChanges();
}
// Push through to emu thread since we're not applying.
if (QtHost::IsVMValid())
{
Host::RunOnCPUThread([value]() {
if (!VMManager::HasValidVM())
return;
// Push through to emu thread since we're not applying.
if (QtHost::IsVMValid())
{
Host::RunOnCPUThread([]() {
if (!VMManager::HasValidVM())
return;
EmuConfig.SPU2.FinalVolume = value;
SPU2::SetOutputVolume(value);
});
EmuConfig.SPU2.FinalVolume = Host::GetIntSettingValue("SPU2/Mixing", "FinalVolume", DEFAULT_VOLUME);
SPU2::SetOutputVolume(EmuConfig.SPU2.FinalVolume);
});
}
}
updateVolumeLabel();