mirror of https://github.com/mgba-emu/mgba.git
GBA Memory: Return correct byte in out of bounds ROM read
This commit is contained in:
parent
e050a2ae3d
commit
99944093f5
|
@ -679,7 +679,7 @@ uint32_t GBALoad8(struct ARMCore* cpu, uint32_t address, int* cycleCounter) {
|
||||||
value = GBAVFameGetPatternValue(address, 8);
|
value = GBAVFameGetPatternValue(address, 8);
|
||||||
} else {
|
} else {
|
||||||
mLOG(GBA_MEM, GAME_ERROR, "Out of bounds ROM Load8: 0x%08X", address);
|
mLOG(GBA_MEM, GAME_ERROR, "Out of bounds ROM Load8: 0x%08X", address);
|
||||||
value = (address >> 1) & 0xFF;
|
value = ((address >> 1) >> ((address & 1) * 8)) & 0xFF;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case REGION_CART_SRAM:
|
case REGION_CART_SRAM:
|
||||||
|
|
Loading…
Reference in New Issue