diff options
author | Paweł Kołodziejski | 2004-03-27 20:55:26 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2004-03-27 20:55:26 +0000 |
commit | fdd44a242dbd02d2e984d472fbbf3d14369a32ca (patch) | |
tree | 0174a5861eaee77556e75dbd22f50d7d003b8c78 | |
parent | 7041ba35686ccc9c5db01c5243a847dffb7e52fa (diff) | |
download | scummvm-rg350-fdd44a242dbd02d2e984d472fbbf3d14369a32ca.tar.gz scummvm-rg350-fdd44a242dbd02d2e984d472fbbf3d14369a32ca.tar.bz2 scummvm-rg350-fdd44a242dbd02d2e984d472fbbf3d14369a32ca.zip |
forgot them
svn-id: r13393
-rw-r--r-- | scumm/akos.cpp | 2 | ||||
-rw-r--r-- | scumm/script_v6.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp index 98731c6b44..54b9acea17 100644 --- a/scumm/akos.cpp +++ b/scumm/akos.cpp @@ -1329,7 +1329,7 @@ void ScummEngine::akos_queCommand(byte cmd, Actor *a, int param_1, int param_2) case 3: if (param_1 != 0) { if (_features & GF_DIGI_IMUSE) - _imuseDigital->startSfx(param_1); + _imuseDigital->startSfx(param_1, 63); else _sound->addSoundToQueue(param_1); } diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index fdf7329b4d..6ab342a4f3 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -1029,7 +1029,7 @@ void ScummEngine_v6::o6_getOwner() { void ScummEngine_v6::o6_startSound() { if (_features & GF_DIGI_IMUSE) - _imuseDigital->startSfx(pop()); + _imuseDigital->startSfx(pop(), 64); else _sound->addSoundToQueue(pop()); } |