Fixed a small VOX sample-time logic error. This should fix the sync issues.
This commit is contained in:
parent
523f1e0284
commit
a21d0d597b
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ void Sound_ProcessWordQue( void ) {
|
|||
iVOXCount = 0;
|
||||
iVOXPos = 0;
|
||||
} else {
|
||||
fSampleTime = time + sndVOX[ iVOXPos ].fLength;
|
||||
fSampleTime = time + sndVOX[ iVOXPos - 1 ].fLength;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue