diff options
author | Travis Howell | 2004-09-26 03:06:45 +0000 |
---|---|---|
committer | Travis Howell | 2004-09-26 03:06:45 +0000 |
commit | 4e24375caef88d6d7d7b33d57a51175fd1adfd1d (patch) | |
tree | 0c92fdb4e53297b0b4e976d1ac4a1f0e340d27bd | |
parent | 75b4bd0cc462957391786fa67e76f88975c8a8ec (diff) | |
download | scummvm-rg350-4e24375caef88d6d7d7b33d57a51175fd1adfd1d.tar.gz scummvm-rg350-4e24375caef88d6d7d7b33d57a51175fd1adfd1d.tar.bz2 scummvm-rg350-4e24375caef88d6d7d7b33d57a51175fd1adfd1d.zip |
Always reads the same spot.
svn-id: r15282
-rw-r--r-- | scumm/gfx.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index 0900810922..154ec862ec 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -1096,12 +1096,7 @@ int Gdi::getZPlanes(const byte *ptr, const byte *zplane_list[9]) const { int numzbuf; int i; - if (_vm->_features & GF_SMALL_HEADER) - zplane_list[0] = ptr; - else if (_vm->_version == 8) - zplane_list[0] = ptr; - else - zplane_list[0] = _vm->findResource(MKID('SMAP'), ptr); + zplane_list[0] = ptr; if (_zbufferDisabled) numzbuf = 0; |