From 9cda63f6c0a6d12cbb25438d0a85fef762f46f04 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sat, 15 Aug 2015 18:06:06 -0700 Subject: [PATCH] GBA Memory: Fix optimizations breaking GBALoad16 (fixes #82) --- src/gba/memory.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gba/memory.c b/src/gba/memory.c index 9da33f31b..eda36f909 100644 --- a/src/gba/memory.c +++ b/src/gba/memory.c @@ -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; }