all repos — mgba @ 39ef39e1c6d2938bbea6f45441f871677d65c6bb

mGBA Game Boy Advance Emulator

GBA Memory: Writable OBJ area depends on mode
Jeffrey Pfau jeffrey@endrift.com
Sat, 14 Nov 2015 12:00:58 -0800
commit

39ef39e1c6d2938bbea6f45441f871677d65c6bb

parent

82d5bed69c8e24c943702c8c2efdbbda16983f8c

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/gba/memory.csrc/gba/memory.c

@@ -798,7 +798,7 @@ case REGION_PALETTE_RAM:

GBALog(gba, GBA_LOG_STUB, "Unimplemented memory Store8: 0x%08X", address); break; case REGION_VRAM: - if ((address & 0x0001FFFF) >= 0x00010000) { + if ((address & 0x0001FFFF) >= ((GBARegisterDISPCNTGetMode(gba->memory.io[REG_DISPCNT >> 1]) == 4) ? 0x00014000 : 0x00010000)) { // TODO: check BG mode GBALog(gba, GBA_LOG_GAME_ERROR, "Cannot Store8 to OBJ: 0x%08X", address); break;