aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/made/scriptfuncs.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/made/scriptfuncs.cpp b/engines/made/scriptfuncs.cpp
index 2819f127ef..d5227ecbf5 100644
--- a/engines/made/scriptfuncs.cpp
+++ b/engines/made/scriptfuncs.cpp
@@ -188,7 +188,8 @@ int16 ScriptFunctions::sfClearScreen(int16 argc, int16 *argv) {
}
int16 ScriptFunctions::sfShowPage(int16 argc, int16 *argv) {
- _vm->_mixer->stopHandle(_audioStreamHandle);
+ if (_vm->getGameID() != GID_RTZ)
+ _vm->_mixer->stopHandle(_audioStreamHandle);
_vm->_screen->show();
return 0;
}