burn_pal, mixup fixup

This commit is contained in:
dinkc64 2024-04-19 20:30:31 -04:00
parent 8e6e2e4a25
commit a3a14e2f1a

View File

@ -18,7 +18,7 @@ static inline UINT32 PaletteWrite4Bit(INT32 offset, INT32 rshift, INT32 gshift,
UINT8 g = (p >> gshift) & 0xf;
UINT8 b = (p >> bshift) & 0xf;
return BurnHighCol(r+(r*16), b+(b*16), g+(g*16), 0);
return BurnHighCol(r+(r*16), g+(g*16), b+(b*16), 0);
}
static inline void PaletteUpdate4Bit(INT32 rshift, INT32 gshift, INT32 bshift)