aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v2.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp
index 9d0b95b663..9f51f739d1 100644
--- a/scumm/script_v2.cpp
+++ b/scumm/script_v2.cpp
@@ -2746,8 +2746,9 @@ void Scumm::o6_miscOps()
if (args[1] == 0) {
sp->play((char*)getStringAddressVar(VAR_VIDEONAME), getGameDataPath());
} else if (_gameId == GID_FT) {
- // Full Throttle INSANE modes
- switch (args[1]) {
+ int insaneMode = readArray(233,0,0);
+ debug(1, "FT_INSANE Mode: %d", insaneMode);
+ switch (insaneMode) {
case 0:
sp->play("minedriv.san", getGameDataPath());
break;