diff options
author | Travis Howell | 2004-01-12 15:52:58 +0000 |
---|---|---|
committer | Travis Howell | 2004-01-12 15:52:58 +0000 |
commit | 5552b628a6498ffc650b7c58b39978eb3eea5647 (patch) | |
tree | abaa412753c64e0910dbeda2478c765c5ed39099 | |
parent | 31808345496fa66dd56407ffe17a0b32855bf277 (diff) | |
download | scummvm-rg350-5552b628a6498ffc650b7c58b39978eb3eea5647.tar.gz scummvm-rg350-5552b628a6498ffc650b7c58b39978eb3eea5647.tar.bz2 scummvm-rg350-5552b628a6498ffc650b7c58b39978eb3eea5647.zip |
Wrong SO_*
svn-id: r12341
-rw-r--r-- | scumm/script_v6.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index 3e644a0b41..824dc64187 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -1629,12 +1629,12 @@ void ScummEngine_v6::o6_roomOps() { else setPalette(a); break; - case 220: // SO_DRAW_OBJECT_AT + case 220: a = pop(); b = pop(); warning("o6_roomops:220 (%d, %d): unimplemented", a, b); break; - case 221: // SO_DRAW_OBJECT_IMAGE + case 221: int len; len = resStrLen(_scriptPointer); _scriptPointer += len + 1; |