GBA: Fix multiboot ROM loading
Jeffrey Pfau jeffrey@endrift.com
Sun, 01 Jan 2017 22:04:04 -0800
2 files changed,
4 insertions(+),
0 deletions(-)
M
src/gba/core.c
→
src/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); }