From f133cf6f56359c435981fe42b815356403e538b6 Mon Sep 17 00:00:00 2001 From: Paweł Kołodziejski Date: Wed, 3 Apr 2002 17:40:32 +0000 Subject: Reenable masking detection for Indy3/Zak/Loom - still not correct, I've got no idea how this code actually does the masking. svn-id: r3853 --- gfx.cpp | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/gfx.cpp b/gfx.cpp index c961fbb280..34e4dd2f20 100644 --- a/gfx.cpp +++ b/gfx.cpp @@ -1260,13 +1260,10 @@ void Gdi::unkDecode7() { { _currentX = 8; for(;;) { - byte color = *src++; - - - *dst = color; + *dst = color; NEXT_ROW - } + } return; } @@ -2088,9 +2085,6 @@ void Scumm::setCursorHotspot2(int x,int y) { byte Scumm::isMaskActiveAt(int l, int t, int r, int b, byte *mem) { int w,h,i; - if(_features & GF_SMALL_HEADER) /* FIXME */ - return false; - l>>=3; if (l<0) l = 0; if (t<0) t = 0; -- cgit v1.2.3