mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
d3d12: Fix for vertex decompiler
This commit is contained in:
parent
a9425fcf2a
commit
9fc50fcce5
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue