mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-02 23:49:40 +00:00
V2 syntax fix
svn-id: r7149
This commit is contained in:
parent
caf6d74095
commit
a94afe4120
@ -607,9 +607,9 @@ void Scumm_v2::o2_drawObject() {
|
||||
uint16 x, y, w, h;
|
||||
int xpos, ypos;
|
||||
|
||||
obj = getVarOrDirectWord(0x80);
|
||||
xpos = getVarOrDirectWord(0x40);
|
||||
ypos = getVarOrDirectWord(0x20);
|
||||
obj = getVarOrDirectByte(0x80);
|
||||
xpos = getVarOrDirectByte(0x40);
|
||||
ypos = getVarOrDirectByte(0x20);
|
||||
|
||||
idx = getObjectIndex(obj);
|
||||
if (idx == -1)
|
||||
|
Loading…
Reference in New Issue
Block a user