diff options
author | Filippos Karapetis | 2007-11-20 16:44:16 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-11-20 16:44:16 +0000 |
commit | 338f8aa99eb3221fcc6571e66e3ac70a086b8323 (patch) | |
tree | 3041bc9b06e382483f3d528b882132caaaa04fa1 /engines/agi | |
parent | 2393e87a7a3d76e7a86896e585a1f82479a2cf47 (diff) | |
download | scummvm-rg350-338f8aa99eb3221fcc6571e66e3ac70a086b8323.tar.gz scummvm-rg350-338f8aa99eb3221fcc6571e66e3ac70a086b8323.tar.bz2 scummvm-rg350-338f8aa99eb3221fcc6571e66e3ac70a086b8323.zip |
Slight fix for the sound in Mickey's Space Adventure
svn-id: r29579
Diffstat (limited to 'engines/agi')
-rw-r--r-- | engines/agi/preagi_mickey.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
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); } } |