Fixed a small VOX sample-time logic error. This should fix the sync issues.

This commit is contained in:
Marco Cawthorne 2018-12-09 06:33:38 +01:00
parent 523f1e0284
commit a21d0d597b

View file

@ -63,7 +63,7 @@ void Sound_ProcessWordQue( void ) {
iVOXCount = 0;
iVOXPos = 0;
} else {
fSampleTime = time + sndVOX[ iVOXPos ].fLength;
fSampleTime = time + sndVOX[ iVOXPos - 1 ].fLength;
}
}
}