mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Fix vol must be muted to actually hear things
This commit is contained in:
parent
12431c3047
commit
796e6f0f4d
|
@ -592,7 +592,7 @@ void Core::playGroupAudio(Tox* /*tox*/, int groupnumber, int /*friendgroupnumbe
|
|||
if (!groupCalls[groupnumber].active)
|
||||
return;
|
||||
|
||||
if (!groupCalls[groupnumber].muteVol)
|
||||
if (groupCalls[groupnumber].muteVol)
|
||||
return;
|
||||
|
||||
playAudioBuffer(alMainSource, out_audio, out_audio_samples, decoder_channels, audio_sample_rate);
|
||||
|
|
Loading…
Reference in New Issue
Block a user