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