mirror of https://github.com/mgba-emu/mgba.git
GBA Video: Fix color of disabled screen
This commit is contained in:
parent
55446851dd
commit
54ec0da2c5
1
CHANGES
1
CHANGES
|
@ -9,6 +9,7 @@ Emulation fixes:
|
|||
- 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)
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue