CDVD: fix for loading games in BIOS

This commit is contained in:
Gauvain 'GovanifY' Roussel-Tarbouriech 2020-09-30 22:10:09 +02:00 committed by refractionpcsx2
parent 3231e79566
commit 0ed46c8b74
1 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@
#include "Common.h"
#include "gui/App.h"
#include "IopBios.h"
#include "R5900.h"
#include "Counters.h"
#include "GS.h"
@ -295,7 +296,7 @@ void SysCoreThread::OnSuspendInThread()
void SysCoreThread::OnResumeInThread( bool isSuspended )
{
GetCorePlugins().Open();
if (isSuspended)
if (isSuspended || !g_GameStarted)
DoCDVDopen();
FWopen();
}