GBA: Fix BIOS booting when skipBios is set

This commit is contained in:
Jeffrey Pfau 2016-08-31 22:53:46 -07:00
parent 3dceea20cf
commit 98b221deea
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ static void _GBACoreReset(struct mCore* core) {
GBAVideoAssociateRenderer(&gba->video, renderer);
}
ARMReset(core->cpu);
if (core->opts.skipBios) {
if (core->opts.skipBios && gba->pristineRom) {
GBASkipBIOS(core->board);
}