From c20db9475d63509d96ac6214d2db94599ec90185 Mon Sep 17 00:00:00 2001 From: Ariel Antonitis Date: Tue, 4 May 2021 00:49:51 -0400 Subject: [PATCH] Fixed BlendPalettes not incrementing the destination buffer. --- src/palette.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/palette.c b/src/palette.c index b947f464c3..052b8a5568 100644 --- a/src/palette.c +++ b/src/palette.c @@ -1018,7 +1018,7 @@ void BlendPalettesFine(u32 palettes, u16 *src, u16 *dst, u32 coeff, u32 color) { } } else { src += 16; - dst + 16; + dst += 16; } palettes >>= 1; } while (palettes);