GBA Memory: Fix 32-bit loads from unaddress cartridge space

This commit is contained in:
Jeffrey Pfau 2015-04-18 13:53:26 -07:00
parent b8edf968a4
commit 0789ebb8cc
2 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@ Bugfixes:
- GBA Memory: Allow SRAM to be 64kB
- Qt: Fix controller axis querying
- GBA Memory: Improve Thumb open bus behavior
- GBA Memory: Fix 32-bit loads from unaddress cartridge space
Misc:
- Qt: Show multiplayer numbers in window title

View File

@ -347,7 +347,7 @@ static void GBASetActiveRegion(struct ARMCore* cpu, uint32_t address) {
} else { \
GBALog(gba, GBA_LOG_GAME_ERROR, "Out of bounds ROM Load32: 0x%08X", address); \
value = (address >> 1) & 0xFFFF; \
value |= value << 16; \
value |= ((address + 2) >> 1) << 16; \
}
#define LOAD_SRAM \