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); } }