From 39a8f528c084514f3a79877cd846824342c51d67 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sun, 16 Aug 2015 13:00:37 -0700 Subject: [PATCH] GBA Thread: Don't skip BIOS if no ROM is loaded --- src/gba/supervisor/thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gba/supervisor/thread.c b/src/gba/supervisor/thread.c index 94eff4a61..901694462 100644 --- a/src/gba/supervisor/thread.c +++ b/src/gba/supervisor/thread.c @@ -225,7 +225,7 @@ static THREAD_ENTRY _GBAThreadRun(void* context) { GBARRInitPlay(&gba); } - if (threadContext->skipBios) { + if (threadContext->skipBios && gba.memory.rom) { GBASkipBIOS(&cpu); } @@ -305,7 +305,7 @@ static THREAD_ENTRY _GBAThreadRun(void* context) { MutexUnlock(&threadContext->stateMutex); if (resetScheduled) { ARMReset(&cpu); - if (threadContext->skipBios) { + if (threadContext->skipBios && gba.memory.rom) { GBASkipBIOS(&cpu); } }