diff --git a/gfx.cpp b/gfx.cpp index c961fbb2801..34e4dd2f20f 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;