diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp index 7ea65da2a8..4de7d38bca 100644 --- a/scumm/script.cpp +++ b/scumm/script.cpp @@ -1040,12 +1040,10 @@ bool ScummEngine::isRoomScriptRunning(int script) const { void ScummEngine::copyScriptString(byte *dst, bool override) { int len, i = 0; if (_heversion >= 72 && (pop() == -1 || override)) { - printf("part one\n"); len = resStrLen(_stringBuffer) + 1; while (len--) *dst++ = _stringBuffer[i++]; } else { - printf("part two\n"); len = resStrLen(_scriptPointer) + 1; while (len--) *dst++ = fetchScriptByte(); |