aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2005-02-14 07:15:16 +0000
committerTravis Howell2005-02-14 07:15:16 +0000
commit0439ab507f7f1e58dbff164d32b1f57cb12bd8dd (patch)
tree1ec4f829a2ef25adc7d4d142a9ef8b2ff3125874 /scumm
parent40768ac29dc8c02bb5815e331f2fb72167657ea9 (diff)
downloadscummvm-rg350-0439ab507f7f1e58dbff164d32b1f57cb12bd8dd.tar.gz
scummvm-rg350-0439ab507f7f1e58dbff164d32b1f57cb12bd8dd.tar.bz2
scummvm-rg350-0439ab507f7f1e58dbff164d32b1f57cb12bd8dd.zip
Add opcode
svn-id: r16785
Diffstat (limited to 'scumm')
-rw-r--r--scumm/intern.h1
-rw-r--r--scumm/script_v100he.cpp2
-rw-r--r--scumm/script_v90he.cpp2
3 files changed, 3 insertions, 2 deletions
diff --git a/scumm/intern.h b/scumm/intern.h
index 9d2c77e44f..85fe6bc769 100644
--- a/scumm/intern.h
+++ b/scumm/intern.h
@@ -824,6 +824,7 @@ protected:
/* HE version 80 script opcodes */
void o80_loadSBNG();
+ void o80_getFileSize();
void o80_stringToInt();
void o80_getSoundVar();
void o80_localizeArrayToRoom();
diff --git a/scumm/script_v100he.cpp b/scumm/script_v100he.cpp
index 33e6803f8d..55f93bc961 100644
--- a/scumm/script_v100he.cpp
+++ b/scumm/script_v100he.cpp
@@ -252,7 +252,7 @@ void ScummEngine_v100he::setupOpcodes() {
OPCODE(o90_cos),
/* A8 */
OPCODE(o6_invalid),
- OPCODE(o6_invalid),
+ OPCODE(o80_getFileSize),
OPCODE(o6_getActorFromXY),
OPCODE(o72_findAllObjects),
/* AC */
diff --git a/scumm/script_v90he.cpp b/scumm/script_v90he.cpp
index 030df2d253..37c9141f2a 100644
--- a/scumm/script_v90he.cpp
+++ b/scumm/script_v90he.cpp
@@ -128,7 +128,7 @@ void ScummEngine_v90he::setupOpcodes() {
/* 44 */
OPCODE(o90_getObjectData),
OPCODE(o80_loadSBNG),
- OPCODE(o6_invalid),
+ OPCODE(o80_getFileSize),
OPCODE(o6_wordArrayWrite),
/* 48 */
OPCODE(o80_stringToInt),