mirror of
https://github.com/libretro/mgba.git
synced 2024-11-23 16:10:01 +00:00
GBA: Fix multiboot ROM loading
This commit is contained in:
parent
a9f93aa751
commit
565e280bf6
1
CHANGES
1
CHANGES
@ -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:
|
||||
|
@ -193,6 +193,9 @@ static void _GBACoreSetAVStream(struct mCore* core, struct mAVStream* stream) {
|
||||
}
|
||||
|
||||
static bool _GBACoreLoadROM(struct mCore* core, struct VFile* vf) {
|
||||
if (GBAIsMB(vf)) {
|
||||
return GBALoadMB(core->board, vf);
|
||||
}
|
||||
return GBALoadROM(core->board, vf);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user