d3d12: Fix for fragment decompiler

This commit is contained in:
vlj 2015-05-21 00:06:50 +02:00 committed by Vincent Lejeune
parent f2985f12c1
commit eb1b8b748a
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ std::string D3D12FragmentDecompiler::compareFunction(COMPARE f, const std::strin
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: