aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v6.cpp
diff options
context:
space:
mode:
authorMax Horn2003-01-01 17:57:14 +0000
committerMax Horn2003-01-01 17:57:14 +0000
commit53a8fc24fe6b248234a2e2b5036526097f5a7834 (patch)
tree7eb5dc5a0efaea96302357f3359fab6dbbff4442 /scumm/script_v6.cpp
parent0ab1edf809972ac94a03d74d72d730a0d72e1184 (diff)
downloadscummvm-rg350-53a8fc24fe6b248234a2e2b5036526097f5a7834.tar.gz
scummvm-rg350-53a8fc24fe6b248234a2e2b5036526097f5a7834.tar.bz2
scummvm-rg350-53a8fc24fe6b248234a2e2b5036526097f5a7834.zip
fixed cutscene override in V8; cleanup
svn-id: r6316
Diffstat (limited to 'scumm/script_v6.cpp')
-rw-r--r--scumm/script_v6.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp
index f3a040886d..8320058411 100644
--- a/scumm/script_v6.cpp
+++ b/scumm/script_v6.cpp
@@ -268,10 +268,10 @@ void Scumm_v6::setupOpcodes()
OPCODE(o6_delayMinutes),
OPCODE(o6_stopSentence),
/* B4 */
- OPCODE(o6_print_0),
- OPCODE(o6_print_1),
- OPCODE(o6_print_2),
- OPCODE(o6_print_3),
+ OPCODE(o6_printLine),
+ OPCODE(o6_printCursor),
+ OPCODE(o6_printDebug),
+ OPCODE(o6_printSystem),
/* B8 */
OPCODE(o6_printActor),
OPCODE(o6_printEgo),
@@ -2259,23 +2259,23 @@ void Scumm_v6::o6_stopSentence()
clearClickedStatus();
}
-void Scumm_v6::o6_print_0()
+void Scumm_v6::o6_printLine()
{
_actorToPrintStrFor = 0xFF;
decodeParseString(0, 0);
}
-void Scumm_v6::o6_print_1()
+void Scumm_v6::o6_printCursor()
{
decodeParseString(1, 0);
}
-void Scumm_v6::o6_print_2()
+void Scumm_v6::o6_printDebug()
{
decodeParseString(2, 0);
}
-void Scumm_v6::o6_print_3()
+void Scumm_v6::o6_printSystem()
{
decodeParseString(3, 0);
}