1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00

ppu interpreter: Allow non-ssse3 to use fast path

byte shuffle is now removed which was the barrier for ssse3 check.
This commit is contained in:
eladash 2019-04-11 18:00:50 +03:00 committed by Ivan
parent 6d3fc3a386
commit 4f00af6000

View File

@ -650,7 +650,7 @@ void ppu_thread::exec_task()
return reinterpret_cast<func_t>((uptr)(u32)op)(*this, {u32(op >> 32)});
};
if (cia % 8 || !s_use_ssse3 || UNLIKELY(state))
if (cia % 8 || UNLIKELY(state))
{
if (test_stopped()) return;