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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
g_settings.audio_output_muted = muted;
|
||||||
|
|
||||||
if (m_audio_stream)
|
if (m_audio_stream)
|
||||||
m_audio_stream->SetOutputVolume(GetAudioOutputVolume());
|
m_audio_stream->SetOutputVolume(GetAudioOutputVolume());
|
||||||
|
|
||||||
g_settings.audio_output_muted = muted;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void QtHostInterface::startDumpingAudio()
|
void QtHostInterface::startDumpingAudio()
|
||||||
|
|
Loading…
Reference in New Issue