GBA Video: Fix color of disabled screen

This commit is contained in:
Vicki Pfau 2020-07-13 18:53:56 -07:00
parent c28c290295
commit 7328e96ced
2 changed files with 2 additions and 1 deletions

View File

@ -27,6 +27,7 @@ Emulation fixes:
- GBA Video: Latch scanline at end of Hblank (fixes mgba.io/i/1319)
- GBA Video: Fix Hblank timing
- GBA Video: Fix invalid read in mode 4 mosaic
- GBA Video: Fix color of disabled screen
- SM83: Emulate HALT bug
Other fixes:
- All: Improve export headers (fixes mgba.io/i/1738)

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,