diff -r c83b52340eee -r ccfe4fa81a14 gfx.c --- a/gfx.c Tue Jul 05 17:47:10 2005 +0000 +++ b/gfx.c Tue Jul 05 19:54:35 2005 +0000 @@ -1376,38 +1376,6 @@ } bp.start_x = start_x; - if (info&2) { - int totpix = bp.height_org * bp.width_org; - byte *dst = (byte*)alloca(totpix); - const byte *src = bp.sprite_org; - - bp.sprite = dst + (bp.sprite - bp.sprite_org); - - while (totpix != 0) { - signed char b; - - assert(totpix > 0); - - b = *src++; - if (b >= 0) { - uint count = b; - uint i; - - for (i = 0; i != count; i++) dst[i] = src[i]; - dst += count; - src += count; - totpix -= count; - } else { - const byte *tmp = dst - (((b & 7) << 8) | *src++); - uint count = -(b >> 3); - uint i; - - for (i = 0; i != count; i++) dst[i] = tmp[i]; - dst += count; - totpix -= count; - } - } - } zf_uncomp[dpi->zoom](&bp); } }