Skip to content

Commit

Permalink
Arm64: Fixes MapSelectCC FGT flag
Browse files Browse the repository at this point in the history
As a continuation to FEX-Emu#1404, this was mapped to the incorrect Arm64 flags
  • Loading branch information
Sonicadvance1 committed Dec 8, 2021
1 parent d094332 commit f2de640
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ Condition MapSelectCC(IR::CondClassType Cond) {
case FEXCore::IR::COND_FLU: return Condition::lt;
case FEXCore::IR::COND_FGE: return Condition::ge;
case FEXCore::IR::COND_FLEU:return Condition::le;
case FEXCore::IR::COND_FGT: return Condition::hi;
case FEXCore::IR::COND_FGT: return Condition::gt;
case FEXCore::IR::COND_FU: return Condition::vs;
case FEXCore::IR::COND_FNU: return Condition::vc;
case FEXCore::IR::COND_VS:
Expand Down

0 comments on commit f2de640

Please sign in to comment.