From 338f8aa99eb3221fcc6571e66e3ac70a086b8323 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Tue, 20 Nov 2007 16:44:16 +0000 Subject: Slight fix for the sound in Mickey's Space Adventure svn-id: r29579 --- engines/agi/preagi_mickey.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'engines/agi') diff --git a/engines/agi/preagi_mickey.cpp b/engines/agi/preagi_mickey.cpp index 0a0c609ac4..a3bfa976b3 100644 --- a/engines/agi/preagi_mickey.cpp +++ b/engines/agi/preagi_mickey.cpp @@ -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); } } -- cgit v1.2.3