aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorJames Brown2002-10-06 06:51:59 +0000
committerJames Brown2002-10-06 06:51:59 +0000
commit9b93506bcb881e7f0e5018e08b2b6cd9e422ed3a (patch)
tree9e63da30673e51c046948715484b0d80520e0dc2 /scumm
parent9560ba224cbafdbd6564920cc54c29029cff9f54 (diff)
downloadscummvm-rg350-9b93506bcb881e7f0e5018e08b2b6cd9e422ed3a.tar.gz
scummvm-rg350-9b93506bcb881e7f0e5018e08b2b6cd9e422ed3a.tar.bz2
scummvm-rg350-9b93506bcb881e7f0e5018e08b2b6cd9e422ed3a.zip
Improve INSANE start-of-hack :P
svn-id: r5093
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;