all repos — mgba @ a33304f567bccaf13c78b75dc93b51becc285d36

mGBA Game Boy Advance Emulator

GB Memory: Initialize peripheral pointers
Vicki Pfau vi@endrift.com
Tue, 25 Jul 2017 18:34:39 -0700
commit

a33304f567bccaf13c78b75dc93b51becc285d36

parent

22af2db6f37aba20268598c87002f64e5cb448f9

2 files changed, 3 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -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.csrc/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); }