mirror of https://github.com/mgba-emu/mgba.git
GBA: Fix BIOS booting when skipBios is set
This commit is contained in:
parent
3dceea20cf
commit
98b221deea
|
@ -247,7 +247,7 @@ static void _GBACoreReset(struct mCore* core) {
|
||||||
GBAVideoAssociateRenderer(&gba->video, renderer);
|
GBAVideoAssociateRenderer(&gba->video, renderer);
|
||||||
}
|
}
|
||||||
ARMReset(core->cpu);
|
ARMReset(core->cpu);
|
||||||
if (core->opts.skipBios) {
|
if (core->opts.skipBios && gba->pristineRom) {
|
||||||
GBASkipBIOS(core->board);
|
GBASkipBIOS(core->board);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue