aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v6he.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/script_v6he.cpp')
-rw-r--r--scumm/script_v6he.cpp20
1 files changed, 1 insertions, 19 deletions
diff --git a/scumm/script_v6he.cpp b/scumm/script_v6he.cpp
index 73d737857a..f68131ebed 100644
--- a/scumm/script_v6he.cpp
+++ b/scumm/script_v6he.cpp
@@ -344,7 +344,7 @@ void ScummEngine_v6he::setupOpcodes() {
/* EC */
OPCODE(o6_invalid),
OPCODE(o6_invalid),
- OPCODE(o6_stringLen),
+ OPCODE(o6_invalid),
OPCODE(o6_invalid),
/* F0 */
OPCODE(o6_invalid),
@@ -1244,24 +1244,6 @@ void ScummEngine_v6he::redimArray(int arrayId, int newX, int newY, int type) {
ah->dim2 = TO_LE_16(newX + 1);
}
-// TODO: It's Win32 specific
-void ScummEngine_v6he::o6_stringLen() {
- int a, len;
-
- if (_features & GF_PC) {
- o6_invalid();
- }
-
- a = pop();
-
- if (_gameId == GID_FREDDEMO) {
- len = strlen((char *)getStringAddress(a));
- } else {
- len = 0; // TODO: implement
- }
- push(len);
-}
-
void ScummEngine_v6he::o6_readINI() {
int len;