mirror of https://github.com/mgba-emu/mgba.git
GBA Video: Fix color of disabled screen
This commit is contained in:
parent
c28c290295
commit
7328e96ced
1
CHANGES
1
CHANGES
|
@ -27,6 +27,7 @@ Emulation fixes:
|
||||||
- GBA Video: Latch scanline at end of Hblank (fixes mgba.io/i/1319)
|
- GBA Video: Latch scanline at end of Hblank (fixes mgba.io/i/1319)
|
||||||
- GBA Video: Fix Hblank timing
|
- GBA Video: Fix Hblank timing
|
||||||
- GBA Video: Fix invalid read in mode 4 mosaic
|
- GBA Video: Fix invalid read in mode 4 mosaic
|
||||||
|
- GBA Video: Fix color of disabled screen
|
||||||
- SM83: Emulate HALT bug
|
- SM83: Emulate HALT bug
|
||||||
Other fixes:
|
Other fixes:
|
||||||
- All: Improve export headers (fixes mgba.io/i/1738)
|
- All: Improve export headers (fixes mgba.io/i/1738)
|
||||||
|
|
|
@ -53,7 +53,7 @@ enum {
|
||||||
GBA_COLOR_WHITE = 0x7FFF,
|
GBA_COLOR_WHITE = 0x7FFF,
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
GBA_COLOR_WHITE = 0x00F8F8F8,
|
GBA_COLOR_WHITE = 0x00FFFFFF,
|
||||||
#endif
|
#endif
|
||||||
OFFSET_PRIORITY = 30,
|
OFFSET_PRIORITY = 30,
|
||||||
OFFSET_INDEX = 28,
|
OFFSET_INDEX = 28,
|
||||||
|
|
Loading…
Reference in New Issue