aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2004-02-07 03:00:01 +0000
committerTravis Howell2004-02-07 03:00:01 +0000
commitea3be081b7039d505c52ad453a6dbeabe5f56f36 (patch)
tree8e588a1bc39b3367cd26253352d7b6d66421209b /scumm
parent86394f45427ebe346c3ec46dd2a5deb4373985f8 (diff)
downloadscummvm-rg350-ea3be081b7039d505c52ad453a6dbeabe5f56f36.tar.gz
scummvm-rg350-ea3be081b7039d505c52ad453a6dbeabe5f56f36.tar.bz2
scummvm-rg350-ea3be081b7039d505c52ad453a6dbeabe5f56f36.zip
Only used in HE games.
svn-id: r12755
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v6.cpp8
-rw-r--r--scumm/script_v6he.cpp2
2 files changed, 1 insertions, 9 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp
index 9ea17fd993..8f70594ab4 100644
--- a/scumm/script_v6.cpp
+++ b/scumm/script_v6.cpp
@@ -1753,14 +1753,6 @@ void ScummEngine_v6::o6_roomOps() {
b = pop();
warning("o6_roomops:220 (%d, %d): unimplemented", a, b);
break;
- case 221:
- int len;
- len = resStrLen(_scriptPointer);
- _scriptPointer += len + 1;
- _saveLoadFlag = pop();
- _saveLoadSlot = 99;
- _saveTemporaryState = true;
- break;
default:
error("o6_roomOps: default case %d", op);
}
diff --git a/scumm/script_v6he.cpp b/scumm/script_v6he.cpp
index 2a3ecd1f01..fbc6c8bbb4 100644
--- a/scumm/script_v6he.cpp
+++ b/scumm/script_v6he.cpp
@@ -527,7 +527,7 @@ void ScummEngine_v6he::o6_roomOps() {
len = resStrLen(_scriptPointer);
_scriptPointer += len + 1;
_saveLoadFlag = pop();
- _saveLoadSlot = 99;
+ _saveLoadSlot = 1;
_saveTemporaryState = true;
break;
default: