From 1f62da8a7022782450e6b55a9378391b86ff80ac Mon Sep 17 00:00:00 2001 From: kd-11 Date: Sun, 8 Jan 2017 12:25:47 +0300 Subject: [PATCH] [rsx/wip] Fix typo --- rpcs3/Emu/RSX/Common/VertexProgramDecompiler.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rpcs3/Emu/RSX/Common/VertexProgramDecompiler.cpp b/rpcs3/Emu/RSX/Common/VertexProgramDecompiler.cpp index 6fd89e32dc..b54713d672 100644 --- a/rpcs3/Emu/RSX/Common/VertexProgramDecompiler.cpp +++ b/rpcs3/Emu/RSX/Common/VertexProgramDecompiler.cpp @@ -672,10 +672,9 @@ std::string VertexProgramDecompiler::Decompile() // 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, d3.HEX); - u32 jump_position = find_jump_lvl(GetAddr()); - AddCode("$if (!$bconst) //BRB"); //If only the cond flags are set, we can just use $ifcond + AddCode("if (!$bconst) //BRB"); //If only the cond flags are set, we can just use $ifcond AddCode("{"); m_cur_instr->open_scopes++; AddCode(fmt::format("jump_position = %u;", jump_position));