diff options
author | Jonathan Gray | 2004-08-23 05:56:29 +0000 |
---|---|---|
committer | Jonathan Gray | 2004-08-23 05:56:29 +0000 |
commit | e46c81ad7432330add28f3da2a8f2f8cdf5f0a3a (patch) | |
tree | db67a2523dcb130efe3cc2648bfbcf87768e2d37 | |
parent | a3d531a9fd87bd385391c4f3dbcf0922e8199047 (diff) | |
download | scummvm-rg350-e46c81ad7432330add28f3da2a8f2f8cdf5f0a3a.tar.gz scummvm-rg350-e46c81ad7432330add28f3da2a8f2f8cdf5f0a3a.tar.bz2 scummvm-rg350-e46c81ad7432330add28f3da2a8f2f8cdf5f0a3a.zip |
fix compilation by removing what was presumably a typo
svn-id: r14697
-rw-r--r-- | scumm/script_v7he.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v7he.cpp b/scumm/script_v7he.cpp index f1f8672ad4..f2aea2fa27 100644 --- a/scumm/script_v7he.cpp +++ b/scumm/script_v7he.cpp @@ -433,7 +433,7 @@ void ScummEngine_v7he::o7_unknownFA() { int len, a = fetchScriptByte(); if (_heversion <= 71) { - int len = resStrLen(_scriptPointer); + len = resStrLen(_scriptPointer); warning("stub o7_unknownFA(%d, \"%s\")", a, _scriptPointer); _scriptPointer += len + 1; } else { |