aboutsummaryrefslogtreecommitdiff
path: root/scumm/script.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-08-26 09:50:44 +0000
committerTravis Howell2004-08-26 09:50:44 +0000
commit79fb54ba29c42ce1fabfb623bbc3a7782f15bd20 (patch)
treeb2e114461a75965645b35ed318bdb8708cd04628 /scumm/script.cpp
parentfe59c97cc8578849f256e8fbd7b6d4b447f6b930 (diff)
downloadscummvm-rg350-79fb54ba29c42ce1fabfb623bbc3a7782f15bd20.tar.gz
scummvm-rg350-79fb54ba29c42ce1fabfb623bbc3a7782f15bd20.tar.bz2
scummvm-rg350-79fb54ba29c42ce1fabfb623bbc3a7782f15bd20.zip
Remove leftovers
svn-id: r14766
Diffstat (limited to 'scumm/script.cpp')
-rw-r--r--scumm/script.cpp2
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();