all repos — mgba @ 54ec0da2c57c76acb9c93fb1d7a83ffdccb0b5b8

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

54ec0da2c57c76acb9c93fb1d7a83ffdccb0b5b8

parent

55446851dd34bb39a9811168df441434d1ffe65e

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

jump to
M CHANGESCHANGES

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