1
0
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:
Tux3 / Mlkj / !Lev.uXFMLA 2014-11-13 19:43:53 +01:00
parent 12431c3047
commit 796e6f0f4d
No known key found for this signature in database
GPG Key ID: 7E086DD661263264

View File

@ -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);