GBA Video: Fix color of disabled screen
Vicki Pfau vi@endrift.com
Mon, 13 Jul 2020 18:53:56 -0700
2 files changed,
2 insertions(+),
1 deletions(-)
M
CHANGES
→
CHANGES
@@ -27,6 +27,7 @@ - GBA SIO: Fix copying Normal mode transfer values
- 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)
M
include/mgba/internal/gba/renderers/video-software.h
→
include/mgba/internal/gba/renderers/video-software.h
@@ -53,7 +53,7 @@ #else
GBA_COLOR_WHITE = 0x7FFF, #endif #else - GBA_COLOR_WHITE = 0x00F8F8F8, + GBA_COLOR_WHITE = 0x00FFFFFF, #endif OFFSET_PRIORITY = 30, OFFSET_INDEX = 28,