diff -ur ScummVM-cvs20021110/scummvm/scumm/imuse.cpp ScummVM-cvs20021110+hack/scummvm/scumm/imuse.cpp
old
|
new
|
|
643 | 643 | |
644 | 644 | uint32 get_base_tempo() { |
645 | 645 | #ifdef _WIN32_WCE |
646 | | return 0x1F0000 * 2; // Sampled down to 11 kHz |
| 646 | return 0x1D90000 * 2; // Sampled down to 11 kHz |
647 | 647 | #else //_WIN32_WCE |
648 | | return 0x1F0000; // Was: 0x1924E0; |
| 648 | return 0x1D9000; // Was: 0x1924E0; |
649 | 649 | #endif //_WIN32_WCE |
650 | 650 | } |
651 | 651 | |
… |
… |
|
708 | 708 | |
709 | 709 | static int midi_driver_thread(void *param); |
710 | 710 | |
711 | | uint32 get_base_tempo() { return 0x460000; } |
| 711 | uint32 get_base_tempo() { return 0x4A0000; } |
712 | 712 | byte get_hardware_type() { return 5; } |
713 | 713 | }; |
714 | 714 | |