d3d12: Fix for vertex decompiler

This commit is contained in:
raven02 2015-05-21 07:14:21 +08:00 committed by Vincent Lejeune
parent a9425fcf2a
commit 9fc50fcce5

View file

@ -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<u32>& dat
{
}
#endif
#endif