The mult_playSound() function makes absolutely no sense at all to me, so
I've changed it to something that doesn't trigger assertions in the Gobliiins demo intro. svn-id: r17907
This commit is contained in:
parent
1da2f1b627
commit
627095f1a6
2 changed files with 3 additions and 8 deletions
|
@ -545,11 +545,8 @@ void mult_initAll(void) {
|
|||
}
|
||||
|
||||
void mult_playSound(Snd_SoundDesc * soundDesc, int16 repCount, int16 freq,
|
||||
int16 negFreq) {
|
||||
if (soundDesc->frequency == freq)
|
||||
snd_playSample(soundDesc, repCount, -negFreq);
|
||||
else
|
||||
snd_playSample(soundDesc, repCount, freq);
|
||||
int16 channel) {
|
||||
snd_playSample(soundDesc, repCount, freq);
|
||||
}
|
||||
|
||||
char mult_drawStatics(char stop) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue