GB Memory: Initialize peripheral pointers
Vicki Pfau vi@endrift.com
Tue, 25 Jul 2017 18:34:39 -0700
2 files changed,
3 insertions(+),
0 deletions(-)
M
CHANGES
→
CHANGES
@@ -9,6 +9,7 @@ - Qt: Fix command line debugger closing second game
- GB Serialize: Fix audio state loading - GB Video: Fix dot clock timing being slightly wrong - GB MBC: Pocket Cam memory should be accessible without enabling + - GB Memory: Initialize peripheral pointers Misc: - GBA Timer: Use global cycles for timers - GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
M
src/gb/memory.c
→
src/gb/memory.c
@@ -103,6 +103,8 @@ gb->memory.mbcRead = NULL;
gb->memory.mbcWrite = NULL; gb->memory.rtc = NULL; + gb->memory.rotation = NULL; + gb->memory.rumble = NULL; GBIOInit(gb); }