1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(audio): fix error introduced in 67f2605971

This commit is contained in:
sudden6 2018-07-02 15:34:24 +02:00
parent f7bfc99c1c
commit 40d30153ae
No known key found for this signature in database
GPG Key ID: 279509B499E032B9

View File

@ -539,7 +539,7 @@ void CoreAV::groupCallCallback(void* tox, int group, int peer, const int16_t* da
call.addPeer(peer); call.addPeer(peer);
} }
audio.playAudioBuffer(call.getPeers()[peer], data, samples, channels, sample_rate); audio.playAudioBuffer(call.getAlSource(peer), data, samples, channels, sample_rate);
} }
#endif #endif