From 1cca00ec3a80b85b6fe1369bf3d7294a0c7ed998 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sat, 9 Nov 2019 20:10:27 +0300 Subject: [PATCH] Fix SSSE3 usage in PPUThread.cpp Remove legacy ifdefs, allow SSSE3 usage in AppImages. --- rpcs3/Emu/Cell/PPUThread.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/rpcs3/Emu/Cell/PPUThread.cpp b/rpcs3/Emu/Cell/PPUThread.cpp index 7b2b17aaa9..fd9a3d8529 100644 --- a/rpcs3/Emu/Cell/PPUThread.cpp +++ b/rpcs3/Emu/Cell/PPUThread.cpp @@ -54,15 +54,7 @@ #include #include "Utilities/GSL.h" -const bool s_use_ssse3 = -#ifdef _MSC_VER - utils::has_ssse3(); -#elif __SSSE3__ - true; -#else - false; -#define _mm_shuffle_epi8 -#endif +const bool s_use_ssse3 = utils::has_ssse3(); extern u64 get_guest_system_time();