mirror of https://github.com/mgba-emu/mgba.git
GB Memory: Initialize peripheral pointers
This commit is contained in:
parent
010cb8f49d
commit
bf8cc66a85
1
CHANGES
1
CHANGES
|
@ -9,6 +9,7 @@ Bugfixes:
|
||||||
- GB Serialize: Fix audio state loading
|
- GB Serialize: Fix audio state loading
|
||||||
- GB Video: Fix dot clock timing being slightly wrong
|
- GB Video: Fix dot clock timing being slightly wrong
|
||||||
- GB MBC: Pocket Cam memory should be accessible without enabling
|
- GB MBC: Pocket Cam memory should be accessible without enabling
|
||||||
|
- GB Memory: Initialize peripheral pointers
|
||||||
Misc:
|
Misc:
|
||||||
- GBA Timer: Use global cycles for timers
|
- GBA Timer: Use global cycles for timers
|
||||||
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
|
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
|
||||||
|
|
|
@ -103,6 +103,8 @@ void GBMemoryInit(struct GB* gb) {
|
||||||
gb->memory.mbcWrite = NULL;
|
gb->memory.mbcWrite = NULL;
|
||||||
|
|
||||||
gb->memory.rtc = NULL;
|
gb->memory.rtc = NULL;
|
||||||
|
gb->memory.rotation = NULL;
|
||||||
|
gb->memory.rumble = NULL;
|
||||||
|
|
||||||
GBIOInit(gb);
|
GBIOInit(gb);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue