GBA Thread: Don't skip BIOS if no ROM is loaded

This commit is contained in:
Jeffrey Pfau 2015-08-16 13:00:37 -07:00
parent 3a9ac188d4
commit 39a8f528c0
1 changed files with 2 additions and 2 deletions

View File

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