1
0
Fork 0

Fix bug 467.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4049
This commit is contained in:
Peter Veenstra 2017-09-11 10:00:00 +00:00
parent 4aa821d0e6
commit ba9c9e1ad6

View file

@ -451,7 +451,7 @@ static void MIXER_Mix_NoSound(void) {
}
/* Set values for next tick */
mixer.tick_counter += mixer.tick_add;
mixer.needed += (mixer.tick_counter >> TICK_SHIFT);
mixer.needed = (mixer.tick_counter >> TICK_SHIFT);
mixer.tick_counter &= TICK_MASK;
mixer.done=0;
}