mirror of https://github.com/mgba-emu/mgba.git
Fix white on 5-6-5 color
This commit is contained in:
parent
915b04dded
commit
71b5473563
|
@ -44,7 +44,11 @@ enum BlendEffect {
|
|||
|
||||
enum {
|
||||
#ifdef COLOR_16_BIT
|
||||
#ifdef COLOR_5_6_5
|
||||
GBA_COLOR_WHITE = 0xFFDF,
|
||||
#else
|
||||
GBA_COLOR_WHITE = 0x7FFF,
|
||||
#endif
|
||||
#else
|
||||
GBA_COLOR_WHITE = 0x00F8F8F8,
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue