aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v6he.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-02-24 00:43:01 +0000
committerTravis Howell2004-02-24 00:43:01 +0000
commit10f95809ab80f0d108a9abe45bac1de63117cfa5 (patch)
treea1ad1684cf75b70bccfa04779475336eac583221 /scumm/script_v6he.cpp
parent87438d54177e3b644769f785442161c222005380 (diff)
downloadscummvm-rg350-10f95809ab80f0d108a9abe45bac1de63117cfa5.tar.gz
scummvm-rg350-10f95809ab80f0d108a9abe45bac1de63117cfa5.tar.bz2
scummvm-rg350-10f95809ab80f0d108a9abe45bac1de63117cfa5.zip
Rename a few opcodes
svn-id: r13011
Diffstat (limited to 'scumm/script_v6he.cpp')
-rw-r--r--scumm/script_v6he.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/scumm/script_v6he.cpp b/scumm/script_v6he.cpp
index b053783caf..a0118ba2d1 100644
--- a/scumm/script_v6he.cpp
+++ b/scumm/script_v6he.cpp
@@ -338,9 +338,9 @@ void ScummEngine_v6he::setupOpcodes() {
OPCODE(o6_invalid),
/* E8 */
OPCODE(o6_invalid),
- OPCODE(o6_seekFile),
+ OPCODE(o6_seekFilePos),
OPCODE(o6_redimArray),
- OPCODE(o6_tellFile),
+ OPCODE(o6_readFilePos),
/* EC */
OPCODE(o6_invalid),
OPCODE(o6_invalid),
@@ -1132,7 +1132,7 @@ void ScummEngine_v6he::o6_unknownFA() {
_scriptPointer += len + 1;
}
-void ScummEngine_v6he::o6_seekFile() {
+void ScummEngine_v6he::o6_seekFilePos() {
int mode, offset, slot;
mode = pop();
offset = pop();
@@ -1142,20 +1142,20 @@ void ScummEngine_v6he::o6_seekFile() {
switch (mode) {
case 1:
- seekWrapper(slot, offset, 0);
+ seekFilePos(slot, offset, 0);
break;
case 2:
- seekWrapper(slot, offset, 1);
+ seekFilePos(slot, offset, 1);
break;
case 3:
- seekWrapper(slot, offset, 2);
+ seekFilePos(slot, offset, 2);
break;
default:
break;
}
}
-void ScummEngine_v6he::seekWrapper(int slot, int offset, int mode) {
+void ScummEngine_v6he::seekFilePos(int slot, int offset, int mode) {
if (slot == 1)
return;
@@ -1172,7 +1172,7 @@ void ScummEngine_v6he::seekWrapper(int slot, int offset, int mode) {
}
}
-void ScummEngine_v6he::o6_tellFile() {
+void ScummEngine_v6he::o6_readFilePos() {
int slot = pop();
debug(1, "o6_tellFile(%d)", slot);