From 4f00af6000220d5118c6b8649d4992a099eeaf89 Mon Sep 17 00:00:00 2001 From: eladash Date: Thu, 11 Apr 2019 18:00:50 +0300 Subject: [PATCH] ppu interpreter: Allow non-ssse3 to use fast path byte shuffle is now removed which was the barrier for ssse3 check. --- rpcs3/Emu/Cell/PPUThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/PPUThread.cpp b/rpcs3/Emu/Cell/PPUThread.cpp index 57c705df9f..17202ada6a 100644 --- a/rpcs3/Emu/Cell/PPUThread.cpp +++ b/rpcs3/Emu/Cell/PPUThread.cpp @@ -650,7 +650,7 @@ void ppu_thread::exec_task() return reinterpret_cast((uptr)(u32)op)(*this, {u32(op >> 32)}); }; - if (cia % 8 || !s_use_ssse3 || UNLIKELY(state)) + if (cia % 8 || UNLIKELY(state)) { if (test_stopped()) return;