aboutsummaryrefslogtreecommitdiff
path: root/scumm/insane
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-06-21 19:04:48 +0000
committerPaweł Kołodziejski2004-06-21 19:04:48 +0000
commit8c14139a3383a4b6581ffe434d8f80cafab1feff (patch)
tree48f39834b0cdc802f635ecaf7c625d0556499239 /scumm/insane
parent6fe5eca422cc7bd2e94652228ced9b0fb23c7df6 (diff)
downloadscummvm-rg350-8c14139a3383a4b6581ffe434d8f80cafab1feff.tar.gz
scummvm-rg350-8c14139a3383a4b6581ffe434d8f80cafab1feff.tar.bz2
scummvm-rg350-8c14139a3383a4b6581ffe434d8f80cafab1feff.zip
call imuse directly
svn-id: r13997
Diffstat (limited to 'scumm/insane')
-rw-r--r--scumm/insane/insane.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/insane/insane.cpp b/scumm/insane/insane.cpp
index 48ff0b2964..b6e4f3f2d1 100644
--- a/scumm/insane/insane.cpp
+++ b/scumm/insane/insane.cpp
@@ -760,7 +760,7 @@ void Insane::smush_setToFinish(void) {
// smlayer_stopSound
void Insane::smlayer_stopSound(int idx) {
- _vm->_sound->stopSound(readArray(idx));
+ _vm->_imuseDigital->stopSound(readArray(idx));
}
void Insane::switchSceneIfNeeded(void) {
@@ -1189,7 +1189,7 @@ void Insane::smlayer_setFluPalette(byte *pal, int shut_flag) {
}
bool Insane::smlayer_isSoundRunning(int32 sound) {
- return _vm->_sound->isSoundRunning(readArray(sound)) != 0;
+ return _vm->_imuseDigital->getSoundStatus(readArray(sound)) != 0;
}
bool Insane::smlayer_startSfx(int32 sound) {