mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-20 08:53:51 +00:00
Slight fix for the sound in Mickey's Space Adventure
svn-id: r29579
This commit is contained in:
parent
2393e87a7a
commit
338f8aa99e
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user