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
@@ -9,6 +9,7 @@ - GB MBC: Fix MBC2 bit selection
- 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)
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,