aboutsummaryrefslogtreecommitdiff
path: root/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sound.cpp')
-rw-r--r--sound.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/sound.cpp b/sound.cpp
index 7328d78b84..8e0fbae593 100644
--- a/sound.cpp
+++ b/sound.cpp
@@ -533,9 +533,13 @@ void Scumm::setupSound()
void Scumm::pauseSounds(bool pause)
{
+ /* Arisme : do not pause iMuse as this will disable synch events */
+ /* the sound is really "paused" in the mixer */
+ /*
IMuse *se = _imuse;
if (se)
se->pause(pause);
+ */
_soundsPaused = pause;
_mixer->pause(pause);
}