diff options
author | Eugene Sandulenko | 2004-03-02 00:23:25 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2004-03-02 00:23:25 +0000 |
commit | c84ad5e0d4563ad6ec39172b00aa08bf17fb6714 (patch) | |
tree | 1317d7bf058ce6014c8db357e6702a2c3ffbc56e | |
parent | dd3683f7e7548b953b8e77cc7ee2a6b5bc426258 (diff) | |
download | scummvm-rg350-c84ad5e0d4563ad6ec39172b00aa08bf17fb6714.tar.gz scummvm-rg350-c84ad5e0d4563ad6ec39172b00aa08bf17fb6714.tar.bz2 scummvm-rg350-c84ad5e0d4563ad6ec39172b00aa08bf17fb6714.zip |
oops
svn-id: r13127
-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() { |