changeset 10056 | 48659f7d4fa5 |
parent 9111 | 48ce04029fe4 |
--- a/src/blitter/8bpp_base.cpp Tue Sep 02 14:46:28 2008 +0000 +++ b/src/blitter/8bpp_base.cpp Tue Sep 02 15:20:38 2008 +0000 @@ -8,7 +8,7 @@ void Blitter_8bppBase::DrawColorMappingRect(void *dst, int width, int height, int pal) { - const uint8 *ctab = GetNonSprite(pal) + 1; + const uint8 *ctab = GetNonSprite(pal, ST_RECOLOUR) + 1; do { for (int i = 0; i != width; i++) *((uint8 *)dst + i) = ctab[((uint8 *)dst)[i]];