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
@@ -4,6 +4,7 @@ - Python: Fix importing .gb or .gba before .core
- GBA: Reset active region as needed when loading a ROM - Qt: Fix command line debugger closing second game - GB MBC: Pocket Cam memory should be accessible without enabling + - GB Memory: Initialize peripheral pointers Misc: - Qt: Don't rebuild library view if style hasn't changed
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); }