GBA Video: Fix color of disabled screen

This commit is contained in:
Vicki Pfau 2020-07-13 18:53:56 -07:00
parent 55446851dd
commit 54ec0da2c5
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ Emulation fixes:
- GB Video: Always initialize palette
- GBA BIOS: Fix reloading video registers after reset (fixes mgba.io/i/1808)
- GBA Video: Fix invalid read in mode 4 mosaic
- GBA Video: Fix color of disabled screen
Other fixes:
- All: Correct format strings for some numbers on Windows (fixes mgba.io/i/1794)
- All: Correct more format strings on Windows (fixes mgba.io/i/1817)

View File

@ -53,7 +53,7 @@ enum {
GBA_COLOR_WHITE = 0x7FFF,
#endif
#else
GBA_COLOR_WHITE = 0x00F8F8F8,
GBA_COLOR_WHITE = 0x00FFFFFF,
#endif
OFFSET_PRIORITY = 30,
OFFSET_INDEX = 28,