diff options
Diffstat (limited to 'scumm/imuse_digi.cpp')
-rw-r--r-- | scumm/imuse_digi.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/imuse_digi.cpp b/scumm/imuse_digi.cpp index faa8b9e425..adfe7ff35c 100644 --- a/scumm/imuse_digi.cpp +++ b/scumm/imuse_digi.cpp @@ -695,12 +695,12 @@ IMuseDigital::IMuseDigital(ScummEngine *scumm) for (int l = 0; l < MAX_DIGITAL_CHANNELS; l++) { _channel[l]._mixerChannel = 0; } - _scumm->_timer->installProcedure(timer_handler, 200000, this); + _scumm->_timer->installTimerProc(timer_handler, 200000, this); _pause = false; } IMuseDigital::~IMuseDigital() { - _scumm->_timer->releaseProcedure(timer_handler); + _scumm->_timer->removeTimerProc(timer_handler); for (int l = 0; l < MAX_DIGITAL_CHANNELS; l++) { _scumm->_mixer->stopChannel(_channel[l]._mixerChannel); |