diff options
-rw-r--r-- | scumm/script_v6he.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v6he.cpp b/scumm/script_v6he.cpp index b6aea7fe0a..9f166a6dd6 100644 --- a/scumm/script_v6he.cpp +++ b/scumm/script_v6he.cpp @@ -1257,9 +1257,9 @@ void ScummEngine_v6he::o6_stringLen() { if (_gameId == GID_FREDDEMO) { len = strlen((char *)getStringAddress(a)); } else { - + len = 0; // TODO: implement } - push() + push(len); } void ScummEngine_v6he::o6_readINI() { |