aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v6.cpp
diff options
context:
space:
mode:
authorMax Horn2002-12-22 23:26:10 +0000
committerMax Horn2002-12-22 23:26:10 +0000
commit1804f44af149c6f47c64703747e68182e63fc7af (patch)
treef9041cc9af1c2588ef42c359137b26bec83938a9 /scumm/script_v6.cpp
parentdf3c41fa24f98423ccb9fc23f2fc50f81c782a31 (diff)
downloadscummvm-rg350-1804f44af149c6f47c64703747e68182e63fc7af.tar.gz
scummvm-rg350-1804f44af149c6f47c64703747e68182e63fc7af.tar.bz2
scummvm-rg350-1804f44af149c6f47c64703747e68182e63fc7af.zip
some more V8 opcode flesh
svn-id: r6061
Diffstat (limited to 'scumm/script_v6.cpp')
-rw-r--r--scumm/script_v6.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp
index 3a375f7f7d..c5210839b8 100644
--- a/scumm/script_v6.cpp
+++ b/scumm/script_v6.cpp
@@ -172,7 +172,7 @@ void Scumm_v6::setupOpcodes()
OPCODE(o6_stopObjectCode),
OPCODE(o6_endCutscene),
/* 68 */
- OPCODE(o6_cutScene),
+ OPCODE(o6_cutscene),
OPCODE(o6_stopMusic),
OPCODE(o6_freezeUnfreeze),
OPCODE(o6_cursorCommand),
@@ -799,7 +799,7 @@ void Scumm_v6::o6_endCutscene()
endCutscene();
}
-void Scumm_v6::o6_cutScene()
+void Scumm_v6::o6_cutscene()
{
int16 args[16];
getStackList(args, sizeof(args) / sizeof(args[0]));