Slight fix for the sound in Mickey's Space Adventure

svn-id: r29579
This commit is contained in:
Filippos Karapetis 2007-11-20 16:44:16 +00:00
parent 2393e87a7a
commit 338f8aa99e

View File

@ -35,7 +35,6 @@
#define IDI_SND_OSCILLATOR_FREQUENCY 1193180
#define IDI_SND_TIMER_RESOLUTION 0.0182
#define IDI_SND_PITCH 1.5
namespace Agi {
@ -585,7 +584,7 @@ void Mickey::playNote(MSA_SND_NOTE note) {
// Pause
_vm->_system->delayMillis(note.length / IDI_SND_TIMER_RESOLUTION);
} else {
_vm->playNote(IDI_SND_OSCILLATOR_FREQUENCY / note.counter, note.length / IDI_SND_TIMER_RESOLUTION / IDI_SND_PITCH);
_vm->playNote(IDI_SND_OSCILLATOR_FREQUENCY / note.counter, note.length / IDI_SND_TIMER_RESOLUTION);
}
}