From cd92d9bcdfd735cfc39b4dc96808061c006554c5 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sat, 23 Jun 2018 08:46:50 +0300 Subject: [PATCH] Fix SPU ASMJIT for SSE2 CPUs --- rpcs3/Emu/Cell/SPUASMJITRecompiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/SPUASMJITRecompiler.cpp b/rpcs3/Emu/Cell/SPUASMJITRecompiler.cpp index 3165a52dbb..0642f77052 100644 --- a/rpcs3/Emu/Cell/SPUASMJITRecompiler.cpp +++ b/rpcs3/Emu/Cell/SPUASMJITRecompiler.cpp @@ -674,7 +674,7 @@ spu_function_t spu_recompiler::compile(std::vector&& func_rv) // Perform bitwise comparison and accumulate c->xorps(dest, x86::dqword_ptr(x86::rax, code_off)); - if (first) + if (!first) { c->orps(reg0, dest); }