aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--script_v2.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/script_v2.cpp b/script_v2.cpp
index 86c85b55db..ccad06cb1b 100644
--- a/script_v2.cpp
+++ b/script_v2.cpp
@@ -2412,6 +2412,13 @@ void Scumm::o6_soundKludge()
{
int16 list[16];
getStackList(list, sizeof(list) / sizeof(list[0]));
+
+ /* (yazoo): I don't know enought about the sound code to
+ * fix the looping sound bug. FIXME !*/
+
+ if(list[1] == 163 && _gameId == GID_DIG)
+ return;
+
soundKludge(list);
}