all repos — mgba @ 7328e96ced3a7adc94239a15f5d166dca15b5284

mGBA Game Boy Advance Emulator

GBA Video: Fix color of disabled screen
Vicki Pfau vi@endrift.com
Mon, 13 Jul 2020 18:53:56 -0700
commit

7328e96ced3a7adc94239a15f5d166dca15b5284

parent

c28c290295e63cbcf08cf1dd14b2280bcc51a2e4

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -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.hinclude/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,