diff options
author | Travis Howell | 2009-03-20 10:01:00 +0000 |
---|---|---|
committer | Travis Howell | 2009-03-20 10:01:00 +0000 |
commit | 3f2212241300837404c10dc4ad648cceabbaba4e (patch) | |
tree | 903973ed21308fbded9fc735dbfc3f3f590a82cd /engines | |
parent | 356e803a955a30e31a25b4ea0473397c7eba1bf0 (diff) | |
download | scummvm-rg350-3f2212241300837404c10dc4ad648cceabbaba4e.tar.gz scummvm-rg350-3f2212241300837404c10dc4ad648cceabbaba4e.tar.bz2 scummvm-rg350-3f2212241300837404c10dc4ad648cceabbaba4e.zip |
Correct vertical offset, when print stats in the AtariST version of Elvira 2.
svn-id: r39558
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/script_e2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agos/script_e2.cpp b/engines/agos/script_e2.cpp index afcf14fb76..827dbf620d 100644 --- a/engines/agos/script_e2.cpp +++ b/engines/agos/script_e2.cpp @@ -685,7 +685,7 @@ void AGOSEngine_Elvira2::oe2_b2NotZero() { void AGOSEngine_Elvira2::printStats() { WindowBlock *window = _dummyWindow; int val; - const uint8 y = (getPlatform() == Common::kPlatformAtariST) ? 131 : 134; + const uint8 y = (getPlatform() == Common::kPlatformAtariST) ? 132 : 134; window->flags = 1; |