From cf1869974817388c104cfdbe5e99d295f243b41b Mon Sep 17 00:00:00 2001 From: kd-11 Date: Sun, 8 Jan 2017 11:25:43 +0300 Subject: [PATCH] [rsx/wip] Fix typo --- rpcs3/Emu/RSX/Common/VertexProgramDecompiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/Common/VertexProgramDecompiler.cpp b/rpcs3/Emu/RSX/Common/VertexProgramDecompiler.cpp index ed972f9d8f..5437cdd9b9 100644 --- a/rpcs3/Emu/RSX/Common/VertexProgramDecompiler.cpp +++ b/rpcs3/Emu/RSX/Common/VertexProgramDecompiler.cpp @@ -671,7 +671,7 @@ std::string VertexProgramDecompiler::Decompile() case RSX_SCA_OPCODE_COS: SetDSTSca("cos($s)"); break; case RSX_SCA_OPCODE_BRB: // works differently (BRB o[1].x !b0, L0;) - LOG_ERROR(RSX, "Unimplemented sca_opcode BRB d0=0x%X, d1=0x%X, d2=0x%X, d3=0x%X", d0.HEX, d1.HEX, d2.HEX); + LOG_ERROR(RSX, "Unimplemented sca_opcode BRB d0=0x%X, d1=0x%X, d2=0x%X, d3=0x%X", d0.HEX, d1.HEX, d2.HEX, d3.HEX); AddCode("$if (!$bconst) //BRB"); //If only the cond flags are set, we can just use $ifcond AddCode("{");