GBA Core: Fix busRead16

This commit is contained in:
Jeffrey Pfau 2016-05-04 00:42:40 -07:00
parent 525354e500
commit df8cddb289
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ static uint32_t _GBACoreBusRead8(struct mCore* core, uint32_t address) {
static uint32_t _GBACoreBusRead16(struct mCore* core, uint32_t address) {
struct ARMCore* cpu = core->cpu;
return cpu->memory.load8(cpu, address, 0);
return cpu->memory.load16(cpu, address, 0);
}