diff options
author | Max Horn | 2003-04-07 16:04:30 +0000 |
---|---|---|
committer | Max Horn | 2003-04-07 16:04:30 +0000 |
commit | ca7c8081a1c35d90a9f1743fbccf57b4304d96e5 (patch) | |
tree | 22785ca28c7eca3ee8c99f78dab68dca0e927d5a /scumm/script_v5.cpp | |
parent | df9ccab93590894f546e5fee86cad513016bc49e (diff) | |
download | scummvm-rg350-ca7c8081a1c35d90a9f1743fbccf57b4304d96e5.tar.gz scummvm-rg350-ca7c8081a1c35d90a9f1743fbccf57b4304d96e5.tar.bz2 scummvm-rg350-ca7c8081a1c35d90a9f1743fbccf57b4304d96e5.zip |
Patch #712493: CMI: Object line
svn-id: r6930
Diffstat (limited to 'scumm/script_v5.cpp')
-rw-r--r-- | scumm/script_v5.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index f046713fb4..6f7b33a2a8 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -2346,7 +2346,7 @@ void Scumm_v5::o5_walkActorToObject() { int Scumm_v5::getWordVararg(int *ptr) { int i; - for (i = 0; i < 16; i++) + for (i = 0; i < 15; i++) ptr[i] = 0; i = 0; @@ -2494,6 +2494,7 @@ void Scumm_v5::o5_oldRoomEffect() { // that something is missing here :-) if (a == 4) { +printf("o5_oldRoomEffect ODDBALL: _opcode = 0x%x, a = 0x%x\n", _opcode, a); // No idea what byte_2FCCF is, but it's a globale boolean flag. // I only add it here as a temporary hack to make the pseudo code compile. int byte_2FCCF = 0; |