aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2007-05-28 14:10:19 +0000
committerTravis Howell2007-05-28 14:10:19 +0000
commit97afe587d2dfce6b6e071fb3e79d01ee6841fac2 (patch)
tree95e9a49e6ee6d47924ec7e7f6b66b03d015e0d7b
parentd877a0a8d1bde533ef558c8f7dffb15275285e4a (diff)
downloadscummvm-rg350-97afe587d2dfce6b6e071fb3e79d01ee6841fac2.tar.gz
scummvm-rg350-97afe587d2dfce6b6e071fb3e79d01ee6841fac2.tar.bz2
scummvm-rg350-97afe587d2dfce6b6e071fb3e79d01ee6841fac2.zip
Use zone number to detect interface height differences in the AtariST verison of Elvira 2.
svn-id: r26998
-rw-r--r--engines/agos/vga.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agos/vga.cpp b/engines/agos/vga.cpp
index ee3881ac52..b2a22df2b6 100644
--- a/engines/agos/vga.cpp
+++ b/engines/agos/vga.cpp
@@ -608,7 +608,7 @@ void AGOSEngine::vc10_draw() {
if (getGameType() == GType_ELVIRA2 && getPlatform() == Common::kPlatformAtariST) {
if (((image >= 11 && image <= 16) || (image >= 195 && image <= 198)) &&
- _vgaCurSpriteId == 100) {
+ _zoneNumber == 1) {
y += 75;
}
}