Seems to be off by 1.

svn-id: r15011
This commit is contained in:
Travis Howell 2004-09-11 13:47:18 +00:00
parent 1a2c46fa72
commit 26a83df853

View File

@ -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);