all repos — mgba @ 565e280bf65f013ae525dbd8ac8e8caecd10b28a

mGBA Game Boy Advance Emulator

GBA: Fix multiboot ROM loading
Jeffrey Pfau jeffrey@endrift.com
Sun, 01 Jan 2017 22:04:04 -0800
commit

565e280bf65f013ae525dbd8ac8e8caecd10b28a

parent

a9f93aa751689930653bf0aae2cd370d36ab5a1b

2 files changed, 4 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -1,6 +1,7 @@

0.5.3: (Future) Bugfixes: - ARM7: Fix MLA/*MULL/*MLAL timing + - GBA: Fix multiboot ROM loading 0.5.2: (2016-12-31) Bugfixes:
M src/gba/core.csrc/gba/core.c

@@ -193,6 +193,9 @@ }

} static bool _GBACoreLoadROM(struct mCore* core, struct VFile* vf) { + if (GBAIsMB(vf)) { + return GBALoadMB(core->board, vf); + } return GBALoadROM(core->board, vf); }