@@ -310,7 +310,7 @@ void AudioSettingsWidget::onOutputVolumeChanged(int new_value)
310310 pxAssert (!m_dialog->isPerGameSettings ());
311311 Host::SetBaseIntSettingValue (" SPU2/Output" , " OutputVolume" , new_value);
312312 Host::CommitBaseSettingChanges ();
313- g_emu_thread->setAudioOutputVolume (new_value, m_ui. fastForwardVolume -> value () );
313+ g_emu_thread->applySettings ( );
314314
315315 updateVolumeLabel ();
316316}
@@ -321,7 +321,7 @@ void AudioSettingsWidget::onFastForwardVolumeChanged(int new_value)
321321 pxAssert (!m_dialog->isPerGameSettings ());
322322 Host::SetBaseIntSettingValue (" SPU2/Output" , " FastForwardVolume" , new_value);
323323 Host::CommitBaseSettingChanges ();
324- g_emu_thread->setAudioOutputVolume (m_ui. volume -> value (), new_value );
324+ g_emu_thread->applySettings ( );
325325
326326 updateVolumeLabel ();
327327}
@@ -334,7 +334,7 @@ void AudioSettingsWidget::onOutputMutedChanged(int new_state)
334334 const bool muted = (new_state != 0 );
335335 Host::SetBaseBoolSettingValue (" SPU2/Output" , " OutputMuted" , muted);
336336 Host::CommitBaseSettingChanges ();
337- g_emu_thread->setAudioOutputMuted (muted );
337+ g_emu_thread->applySettings ( );
338338}
339339
340340void AudioSettingsWidget::onExpansionSettingsClicked ()
0 commit comments