mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 18:53:28 +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:
parent
6d3fc3a386
commit
4f00af6000
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user