aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2003-05-10 18:33:04 +0000
committerMax Horn2003-05-10 18:33:04 +0000
commit4c6cb1d7c9d94a7e49906a22dfa5e1808511e591 (patch)
tree227106738359e65bb25acf46ff97444a8cbffc9a /scumm
parentc490ba525386525d8228086cab4bb2aa42f64cfd (diff)
downloadscummvm-rg350-4c6cb1d7c9d94a7e49906a22dfa5e1808511e591.tar.gz
scummvm-rg350-4c6cb1d7c9d94a7e49906a22dfa5e1808511e591.tar.bz2
scummvm-rg350-4c6cb1d7c9d94a7e49906a22dfa5e1808511e591.zip
removed obsolete check
svn-id: r7418
Diffstat (limited to 'scumm')
-rw-r--r--scumm/gfx.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 7bee659582..c0307437ef 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -1138,9 +1138,7 @@ void Gdi::drawBitmap(byte *ptr, VirtScreen *vs, int x, int y, const int width, c
if (!zplane_list[i])
continue;
- if (_vm->_features & GF_AFTER_V2)
- offs = 0;
- else if (_vm->_features & GF_OLD_BUNDLE)
+ if (_vm->_features & GF_OLD_BUNDLE)
offs = READ_LE_UINT16(zplane_list[i] + stripnr * 2);
else if (_vm->_features & GF_OLD256)
offs = READ_LE_UINT16(zplane_list[i] + stripnr * 2 + 4);