mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
Qt: Fix mute toggle having inverse effect
This commit is contained in:
parent
58b24d6ac9
commit
f4d540bcc6
|
@ -1185,10 +1185,10 @@ void QtHostInterface::setAudioOutputMuted(bool muted)
|
|||
return;
|
||||
}
|
||||
|
||||
g_settings.audio_output_muted = muted;
|
||||
|
||||
if (m_audio_stream)
|
||||
m_audio_stream->SetOutputVolume(GetAudioOutputVolume());
|
||||
|
||||
g_settings.audio_output_muted = muted;
|
||||
}
|
||||
|
||||
void QtHostInterface::startDumpingAudio()
|
||||
|
|
Loading…
Reference in a new issue