From 711e117dd2c0052926df256def67009a15a94717 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Sun, 8 Jan 2017 12:40:11 +0300 Subject: [PATCH] [rsx/wip] Fix broken jump lvl code --- 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 b54713d672..9dcc48eef7 100644 --- a/rpcs3/Emu/RSX/Common/VertexProgramDecompiler.cpp +++ b/rpcs3/Emu/RSX/Common/VertexProgramDecompiler.cpp @@ -538,7 +538,7 @@ std::string VertexProgramDecompiler::Decompile() auto find_jump_lvl = [this](u32 address) { - u32 jump = 0; + u32 jump = 1; for (auto pos : m_jump_lvls) {