diff options
Diffstat (limited to 'scumm/script_v72he.cpp')
-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 639c2ac06c..c941e7d905 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -567,7 +567,7 @@ void ScummEngine_v72he::decodeScriptString(byte *dst, bool scriptString) { if (chr == 0x64) dst += snprintf((char *)dst, 5, "%d", args[val++]); else if (chr == 0x73) - dst += addStringToStack(dst, 100, args[val++]); + dst += addStringToStack(dst, 256, args[val++]); continue; } *dst++ = chr; |