AppCoreThread: remove unneeded includes & unneeded double init call

This commit is contained in:
Gauvain 'GovanifY' Roussel-Tarbouriech 2021-07-11 20:05:32 +02:00 committed by refractionpcsx2
parent efd2df8a33
commit 29f83b4364
1 changed files with 0 additions and 8 deletions

View File

@ -29,17 +29,11 @@
#include "GS.h"
#include "CDVD/CDVD.h"
#include "SPU2/spu2.h"
#include "USB/USB.h"
#include "Elfheader.h"
#include "Patch.h"
#include "R5900Exceptions.h"
#include "Sio.h"
#ifdef _WIN32
#include "PAD/Windows/PAD.h"
#else
#include "PAD/Linux/PAD.h"
#endif
#ifndef DISABLE_RECORDING
#include "Recording/InputRecordingControls.h"
@ -184,8 +178,6 @@ void AppCoreThread::Resume()
GetSysExecutorThread().PostEvent(SysExecEvent_InvokeCoreThreadMethod(&AppCoreThread::Resume));
return;
}
SPU2init();
_parent::Resume();
}