diff options
author | Travis Howell | 2004-10-13 07:59:51 +0000 |
---|---|---|
committer | Travis Howell | 2004-10-13 07:59:51 +0000 |
commit | 3539b6ad959467141e802e0605d901000f29e846 (patch) | |
tree | 850a428695d8a667083c83ef85aadae68d8f1f7d | |
parent | 90055146018202f5e9760c4e74798f2d39a1868e (diff) | |
download | scummvm-rg350-3539b6ad959467141e802e0605d901000f29e846.tar.gz scummvm-rg350-3539b6ad959467141e802e0605d901000f29e846.tar.bz2 scummvm-rg350-3539b6ad959467141e802e0605d901000f29e846.zip |
HE 60 specific
svn-id: r15539
-rw-r--r-- | scumm/script_v6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index b02cd0e484..730c353f5f 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -3055,7 +3055,7 @@ void ScummEngine_v6::o6_getPixel() { // this opcode check ground area in minigame "Asteroid Lander" in the dig int x, y; - if (_features & GF_HUMONGOUS) { + if (_heversion == 60) { x = pop(); y = pop(); } else { |