Skip to content

Commit

Permalink
Merge branch 'shadps4-emu:main' into Full-Blood
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolix29 authored Sep 24, 2024
2 parents 89befc2 + beb809b commit e58eb04
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/shader_recompiler/frontend/translate/vector_alu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,8 @@ void Translator::EmitVectorAlu(const GcnInst& inst) {
return V_CMP_U32(ConditionOp::LG, true, false, inst);
case Opcode::V_CMP_GE_I32:
return V_CMP_U32(ConditionOp::GE, true, false, inst);
case Opcode::V_CMPX_LE_I32:
return V_CMP_U32(ConditionOp::LE, true, true, inst);

// V_CMPX_{OP8}_I32
case Opcode::V_CMPX_LT_I32:
Expand Down

0 comments on commit e58eb04

Please sign in to comment.