GB Video: Fix BGPS value after skipping BIOS (fixes #1717)

This commit is contained in:
Vicki Pfau 2020-05-13 20:00:30 -07:00
parent b716ba2117
commit df1c0b484a
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
0.8.2: (Future)
- GB: Fix GBC game registers after skipping BIOS
- GB Video: Fix BGPS value after skipping BIOS (fixes mgba.io/i/1717)
- GBA: Add missing RTC overrides for Legendz games
- GBA SIO: Fix Multiplayer busy bit
- GBA SIO: Fix double-unloading active driver

View File

@ -203,7 +203,7 @@ void GBIOReset(struct GB* gb) {
GBIOWrite(gb, REG_UNK4C, 0);
GBIOWrite(gb, REG_JOYP, 0xFF);
GBIOWrite(gb, REG_VBK, 0);
GBIOWrite(gb, REG_BCPS, 0);
GBIOWrite(gb, REG_BCPS, 0x80);
GBIOWrite(gb, REG_OCPS, 0);
GBIOWrite(gb, REG_SVBK, 1);
GBIOWrite(gb, REG_HDMA1, 0xFF);