Skip to content

Commit

Permalink
VoIP: Fixed per-user gain output.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jun 5, 2008
1 parent 35e2091 commit bab9a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/client/cl_parse.c
Expand Up @@ -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;
Expand Down

0 comments on commit bab9a00

Please sign in to comment.