USB: fix resume issues with wheels and unneeded init

This commit is contained in:
Gauvain 'GovanifY' Roussel-Tarbouriech 2020-11-04 18:21:36 +01:00 committed by refractionpcsx2
parent 5799e35327
commit a1c4077d83
2 changed files with 4 additions and 3 deletions

View File

@ -316,11 +316,13 @@ void SysCoreThread::OnResumeInThread(bool isSuspended)
{
GetCorePlugins().Open();
if (isSuspended)
{
DoCDVDopen();
DEV9open((void*)pDsp);
USBopen((void*)pDsp);
}
FWopen();
SPU2open((void*)pDsp);
DEV9open((void*)pDsp);
USBopen((void*)pDsp);
}

View File

@ -172,7 +172,6 @@ void AppCoreThread::Resume()
GetCorePlugins().Init();
SPU2init();
USBinit();
_parent::Resume();
}