mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
VoIP: Fixed per-user gain output.
This commit is contained in:
parent
35e2091c90
commit
bab9a00838
1 changed files with 1 additions and 1 deletions
|
@ -785,7 +785,7 @@ void CL_ParseVoip ( msg_t *msg ) {
|
|||
|
||||
if (written > 0) {
|
||||
S_RawSamples(sender + 1, written, 8000, 2, 1,
|
||||
(const byte *) decoded, 1.0f); // !!! FIXME: hardcoding!
|
||||
(const byte *) decoded, clc.voipGain[sender]); // !!! FIXME: hardcoding!
|
||||
}
|
||||
|
||||
clc.voipIncomingSequence[sender] = sequence + frames;
|
||||
|
|
Loading…
Reference in a new issue