mirror of https://github.com/mgba-emu/mgba.git
GBA Thread: Don't skip BIOS if no ROM is loaded
This commit is contained in:
parent
3a9ac188d4
commit
39a8f528c0
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue