aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v5.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-05-28 08:37:44 +0000
committerTravis Howell2005-05-28 08:37:44 +0000
commit151f09ed539ea5ba70712041345d75597d33a7ec (patch)
treefd027ea67436d945f27fcff94e1b889226ea04a6 /scumm/script_v5.cpp
parentb65974b7b40d2a93a8e33d0979fa235381a05c7d (diff)
downloadscummvm-rg350-151f09ed539ea5ba70712041345d75597d33a7ec.tar.gz
scummvm-rg350-151f09ed539ea5ba70712041345d75597d33a7ec.tar.bz2
scummvm-rg350-151f09ed539ea5ba70712041345d75597d33a7ec.zip
Sync opcode names and add HE72+ version of o_systemOps.
svn-id: r18278
Diffstat (limited to 'scumm/script_v5.cpp')
-rw-r--r--scumm/script_v5.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp
index b868cf2420..06c67ebfc0 100644
--- a/scumm/script_v5.cpp
+++ b/scumm/script_v5.cpp
@@ -229,7 +229,7 @@ void ScummEngine_v5::setupOpcodes() {
OPCODE(o5_getRandomNr),
OPCODE(o5_and),
/* 98 */
- OPCODE(o5_quitPauseRestart),
+ OPCODE(o5_systemOps),
OPCODE(o5_doSentence),
OPCODE(o5_move),
OPCODE(o5_multiply),
@@ -1673,7 +1673,7 @@ void ScummEngine_v5::o5_putActorInRoom() {
a->putActor(0, 0, 0);
}
-void ScummEngine_v5::o5_quitPauseRestart() {
+void ScummEngine_v5::o5_systemOps() {
byte subOp = fetchScriptByte();
switch (subOp) {
case 1: // SO_RESTART
@@ -1686,7 +1686,7 @@ void ScummEngine_v5::o5_quitPauseRestart() {
shutDown();
break;
default:
- error("o5_quitPauseRestart: unknown subopcode %d", subOp);
+ error("o5_systemOps: unknown subopcode %d", subOp);
}
}