Fix 2f692a79: Dest ptr not advanced for BM_BLACK_REMAP in 32bpp anim blitter

This commit is contained in:
Jonathan G Rennison
2023-08-23 02:03:00 +01:00
parent 3a8217fc99
commit 0cac2526f1

View File

@@ -213,6 +213,8 @@ inline void Blitter_32bppAnim::Draw(const Blitter::BlitterParams *bp, ZoomLevel
case BM_BLACK_REMAP:
memset_colour(dst, _black_colour, n);
memset(anim, 0, n * sizeof(*anim));
dst += n;
anim += n;
src_px += n;
src_n += n;
break;