diff options
author | Max Horn | 2003-05-09 01:01:53 +0000 |
---|---|---|
committer | Max Horn | 2003-05-09 01:01:53 +0000 |
commit | 88c1f3ac1878a1ff82c631060c469457fe839d0b (patch) | |
tree | 1734b3f4b4a074992fbd00daa0f0a3e42ff191fb | |
parent | bb4f80695495246d4feb4d5f48c495d22cc2704c (diff) | |
download | scummvm-rg350-88c1f3ac1878a1ff82c631060c469457fe839d0b.tar.gz scummvm-rg350-88c1f3ac1878a1ff82c631060c469457fe839d0b.tar.bz2 scummvm-rg350-88c1f3ac1878a1ff82c631060c469457fe839d0b.zip |
fixed V2 drawObject
svn-id: r7400
-rw-r--r-- | scumm/script_v2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp index ec364cdbb5..f1659ba66c 100644 --- a/scumm/script_v2.cpp +++ b/scumm/script_v2.cpp @@ -655,7 +655,7 @@ void Scumm_v2::o2_drawObject() { uint16 x, y, w, h; int xpos, ypos; - obj = getVarOrDirectByte(0x80); + obj = getVarOrDirectWord(0x80); xpos = getVarOrDirectByte(0x40); ypos = getVarOrDirectByte(0x20); |