diff options
author | Travis Howell | 2004-09-11 13:47:18 +0000 |
---|---|---|
committer | Travis Howell | 2004-09-11 13:47:18 +0000 |
commit | 26a83df8534ba0aa909b13fbaf0d237065bb902f (patch) | |
tree | fc2cd28ada15dad9ac8229fb0e775ec8ce03f19b | |
parent | 1a2c46fa72b7cd842b8022a1bcff82a780a67dc5 (diff) | |
download | scummvm-rg350-26a83df8534ba0aa909b13fbaf0d237065bb902f.tar.gz scummvm-rg350-26a83df8534ba0aa909b13fbaf0d237065bb902f.tar.bz2 scummvm-rg350-26a83df8534ba0aa909b13fbaf0d237065bb902f.zip |
Seems to be off by 1.
svn-id: r15011
-rw-r--r-- | scumm/script_v72he.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index 0b45ef27b3..d7c01d8837 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -1744,7 +1744,7 @@ void ScummEngine_v72he::o72_unknownF0() { int src2 = pop(); int src1 = pop(); - size = resStrLen(getStringAddress(src1)) * 2 + 1; + size = resStrLen(getStringAddress(src1)) * 2 + 2; writeVar(0, 0); defineArray(0, kStringArray, 0, 0, 0, size); |