From 5509bfc0035dcf36a1dc350798af714d889f9d4f Mon Sep 17 00:00:00 2001 From: Gauvain 'GovanifY' Roussel-Tarbouriech Date: Sat, 27 Mar 2021 09:17:50 +0100 Subject: [PATCH] spu2: purge sse2 --- pcsx2/SPU2/spu2.cpp | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/pcsx2/SPU2/spu2.cpp b/pcsx2/SPU2/spu2.cpp index 0474baa668..c924887486 100644 --- a/pcsx2/SPU2/spu2.cpp +++ b/pcsx2/SPU2/spu2.cpp @@ -47,30 +47,8 @@ u32* cyclePtr = nullptr; u32 lClocks = 0; //static bool cpu_detected = false; -static bool CheckSSE() -{ - return true; - -#if 0 - if( !cpu_detected ) - { - cpudetectInit(); - cpu_detected = true; - } - if( !x86caps.hasStreamingSIMDExtensions || !x86caps.hasStreamingSIMD2Extensions ) - { - SysMessage( "Your CPU does not support SSE2 instructions.\nThe SPU2 plugin requires SSE2 to run." ); - return false; - } - return true; -#endif -} - void SPU2configure() { - if (!CheckSSE()) - return; - ScopedCoreThreadPause paused_core; configure(); paused_core.AllowResume();