diff options
author | Travis Howell | 2007-06-23 07:49:17 +0000 |
---|---|---|
committer | Travis Howell | 2007-06-23 07:49:17 +0000 |
commit | d36ca0f7a5c87e3f7ce6429454672fbd92b52cb7 (patch) | |
tree | 1715ac6e07a25e18d8b65e0e13c06619fe205e2b /engines | |
parent | ee143c01edb01b5e99a0e2d392d5d7275b56b90b (diff) | |
download | scummvm-rg350-d36ca0f7a5c87e3f7ce6429454672fbd92b52cb7.tar.gz scummvm-rg350-d36ca0f7a5c87e3f7ce6429454672fbd92b52cb7.tar.bz2 scummvm-rg350-d36ca0f7a5c87e3f7ce6429454672fbd92b52cb7.zip |
Ooops, adjust Elvira 2 specific offset too.
svn-id: r27648
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/vga_e2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agos/vga_e2.cpp b/engines/agos/vga_e2.cpp index 6919302f7e..a4925de842 100644 --- a/engines/agos/vga_e2.cpp +++ b/engines/agos/vga_e2.cpp @@ -93,7 +93,7 @@ void AGOSEngine::vc45_setWindowPalette() { byte *dst = (byte *)screen->pixels + vlut[0] * 16 + vlut[1] * _dxSurfacePitch; if (getGameType() == GType_ELVIRA2 && num == 7) { - dst -= 4; + dst -= 8; width += 4; } |