mirror of https://github.com/PCSX2/pcsx2.git
Qt: Fix global volume slider overriding per-game
This commit is contained in:
parent
62c67435e6
commit
94670baa64
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue