adjust bios handling again
[pcsx_rearmed.git] / libpcsxcore / misc.c
index 022ad6d..223266b 100644 (file)
@@ -164,6 +164,8 @@ void BiosLikeGPUSetup()
 
        for (i = 0; i < sizeof(gpu_data_def) / sizeof(gpu_data_def[0]); i++)
                GPU_writeData(gpu_data_def[i]);
+
+       HW_GPU_STATUS |= SWAP32(PSXGPU_nBUSY);
 }
 
 static void SetBootRegs(u32 pc, u32 gp, u32 sp)
@@ -194,9 +196,10 @@ int LoadCdrom() {
        char exename[256];
 
        if (!Config.HLE) {
-               if (!BiosBooted) return 0;              // custom BIOS
-               if (psxRegs.pc != 0x80030000) return 0; // BiosBootBypass'ed
-               if (Config.SlowBoot) return 0;
+               if (psxRegs.pc != 0x80030000) // BiosBootBypass'ed or custom BIOS?
+                       return 0;
+               if (Config.SlowBoot)
+                       return 0;
        }
 
        time[0] = itob(0); time[1] = itob(2); time[2] = itob(0x10);