Fix bug 467.
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4049
This commit is contained in:
parent
4aa821d0e6
commit
ba9c9e1ad6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue