mirror of https://github.com/mgba-emu/mgba.git
GBA Memory: Fix optimizations breaking GBALoad16 (fixes #82)
This commit is contained in:
parent
ae1fecd4c8
commit
9cda63f6c0
|
@ -446,7 +446,7 @@ uint32_t GBALoad16(struct ARMCore* cpu, uint32_t address, int* cycleCounter) {
|
|||
} else {
|
||||
GBALog(gba, GBA_LOG_GAME_ERROR, "Bad memory Load16: 0x%08X", address);
|
||||
LOAD_BAD;
|
||||
uint32_t v2 = value;
|
||||
volatile uint32_t v2 = value;
|
||||
LOAD_16(value, address & 2, &v2);
|
||||
}
|
||||
break;
|
||||
|
@ -506,7 +506,7 @@ uint32_t GBALoad16(struct ARMCore* cpu, uint32_t address, int* cycleCounter) {
|
|||
default:
|
||||
GBALog(gba, GBA_LOG_GAME_ERROR, "Bad memory Load16: 0x%08X", address);
|
||||
LOAD_BAD;
|
||||
uint32_t v2 = value;
|
||||
volatile uint32_t v2 = value;
|
||||
LOAD_16(value, address & 2, &v2);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue