From 29f83b4364cd0f21631c419823b297e5ffc08c19 Mon Sep 17 00:00:00 2001 From: Gauvain 'GovanifY' Roussel-Tarbouriech Date: Sun, 11 Jul 2021 20:05:32 +0200 Subject: [PATCH] AppCoreThread: remove unneeded includes & unneeded double init call --- pcsx2/gui/AppCoreThread.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pcsx2/gui/AppCoreThread.cpp b/pcsx2/gui/AppCoreThread.cpp index 5c2da6c7bc..1f0ea429d1 100644 --- a/pcsx2/gui/AppCoreThread.cpp +++ b/pcsx2/gui/AppCoreThread.cpp @@ -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(); }