Ticket #8122: tempo.diff

File tempo.diff, 795 bytes (added by eriktorbjorn, 22 years ago)

Patch against a November 10 CVS snapshot

  • scummvm/scumm/imuse.cpp

    diff -ur ScummVM-cvs20021110/scummvm/scumm/imuse.cpp ScummVM-cvs20021110+hack/scummvm/scumm/imuse.cpp
    old new  
    643643
    644644        uint32 get_base_tempo() {
    645645#ifdef _WIN32_WCE
    646                 return 0x1F0000 * 2;                            // Sampled down to 11 kHz
     646                return 0x1D90000 * 2;                           // Sampled down to 11 kHz
    647647#else   //_WIN32_WCE
    648                 return 0x1F0000;                                                // Was: 0x1924E0;
     648                return 0x1D9000;                                                // Was: 0x1924E0;
    649649#endif //_WIN32_WCE
    650650        }
    651651
     
    708708
    709709        static int midi_driver_thread(void *param);
    710710
    711         uint32 get_base_tempo() { return 0x460000; }
     711        uint32 get_base_tempo() { return 0x4A0000; }
    712712        byte get_hardware_type() { return 5; }
    713713};
    714714