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)
|
0.5.3: (Future)
|
||||||
Bugfixes:
|
Bugfixes:
|
||||||
- ARM7: Fix MLA/*MULL/*MLAL timing
|
- ARM7: Fix MLA/*MULL/*MLAL timing
|
||||||
|
- GBA: Fix multiboot ROM loading
|
||||||
|
|
||||||
0.5.2: (2016-12-31)
|
0.5.2: (2016-12-31)
|
||||||
Bugfixes:
|
Bugfixes:
|
||||||
|
@ -193,6 +193,9 @@ static void _GBACoreSetAVStream(struct mCore* core, struct mAVStream* stream) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static bool _GBACoreLoadROM(struct mCore* core, struct VFile* vf) {
|
static bool _GBACoreLoadROM(struct mCore* core, struct VFile* vf) {
|
||||||
|
if (GBAIsMB(vf)) {
|
||||||
|
return GBALoadMB(core->board, vf);
|
||||||
|
}
|
||||||
return GBALoadROM(core->board, vf);
|
return GBALoadROM(core->board, vf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user