From 1ea2a6597edfb2281313d5eda8a7f09da53de395 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Thu, 20 Jul 2017 22:25:02 -0700 Subject: [PATCH] GBA: Fix BIOS booting --- src/gba/gba.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gba/gba.c b/src/gba/gba.c index ae9176fd0..fb3680cc0 100644 --- a/src/gba/gba.c +++ b/src/gba/gba.c @@ -208,7 +208,7 @@ void GBAReset(struct ARMCore* cpu) { gba->debug = false; memset(gba->debugString, 0, sizeof(gba->debugString)); - if (!gba->romVf) { + if (!gba->romVf && gba->memory.rom) { GBASkipBIOS(gba); } }