commit 37cd90bec163f28065e76ba7670c61963988fe2f
parent 2c8a7ed05a4dd082a0ad180f44cfc62d669855c2
Author: Sigrid Solveig Haflínudóttir <ftrvxmtrx@gmail.com>
Date: Sat, 25 Dec 2021 19:00:26 +0100
ppu_blit: change type to Uint16
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/devices/ppu.c b/src/devices/ppu.c
@@ -105,7 +105,7 @@ ppu_blit(Ppu *p, Layer *layer, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 color, U
{
int v, h, opaque = blending[4][color];
for(v = 0; v < 8; ++v) {
- int c = sprite[v] | (twobpp ? sprite[v + 8] : 0) << 8;
+ Uint16 c = sprite[v] | (twobpp ? sprite[v + 8] : 0) << 8;
for(h = 7; h >= 0; --h, c >>= 1) {
Uint8 ch = (c & 1) | ((c >> 7) & 2);
if(opaque || ch)