From 9fc50fcce5228ba8dcba653179e01fb00b6e3256 Mon Sep 17 00:00:00 2001 From: raven02 Date: Thu, 21 May 2015 07:14:21 +0800 Subject: [PATCH] d3d12: Fix for vertex decompiler --- rpcs3/Emu/RSX/D3D12/D3D12VertexProgramDecompiler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/RSX/D3D12/D3D12VertexProgramDecompiler.cpp b/rpcs3/Emu/RSX/D3D12/D3D12VertexProgramDecompiler.cpp index be52bab93a..39dc87365f 100644 --- a/rpcs3/Emu/RSX/D3D12/D3D12VertexProgramDecompiler.cpp +++ b/rpcs3/Emu/RSX/D3D12/D3D12VertexProgramDecompiler.cpp @@ -58,7 +58,7 @@ std::string D3D12VertexProgramDecompiler::compareFunction(COMPARE f, const std:: default: abort(); case COMPARE::FUNCTION_SEQ: - return "(" + Op0 + " == " + Op1 + ".xxxx"; + return "(" + Op0 + " == " + Op1 + ").xxxx"; case COMPARE::FUNCTION_SGE: return "(" + Op0 + " >= " + Op1 + ").xxxx"; case COMPARE::FUNCTION_SGT: @@ -202,4 +202,4 @@ D3D12VertexProgramDecompiler::D3D12VertexProgramDecompiler(std::vector& dat { } -#endif \ No newline at end of file +#endif