GBA Memory: Allow SRAM to be 64kB
Jeffrey Pfau jeffrey@endrift.com
Wed, 15 Apr 2015 21:36:07 -0700
2 files changed,
2 insertions(+),
1 deletions(-)
M
CHANGES
→
CHANGES
@@ -23,6 +23,7 @@ - Qt: Fix regression where video would not record if the game had already started
- GBA: Fix rewind boundary conditions - GBA: Add initial I/O register settings for background matrix registers - Qt: Fix potential crash if a gamepad causes focus to change + - GBA Memory: Allow SRAM to be 64kB Misc: - Qt: Show multiplayer numbers in window title
M
src/gba/memory.h
→
src/gba/memory.h
@@ -61,7 +61,7 @@ SIZE_OAM = 0x00000400,
SIZE_CART0 = 0x02000000, SIZE_CART1 = 0x02000000, SIZE_CART2 = 0x02000000, - SIZE_CART_SRAM = 0x00008000, + SIZE_CART_SRAM = 0x00010000, SIZE_CART_FLASH512 = 0x00010000, SIZE_CART_FLASH1M = 0x00020000, SIZE_CART_EEPROM = 0x00002000