Skip to content

Commit

Permalink
CPU/PGXP: Fix typo in SLTU()
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Aug 20, 2024
1 parent b656e1d commit 64a28aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/cpu_pgxp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ void CPU::PGXP::CPU_SLTU(u32 instr, u32 rsVal, u32 rtVal)
LOG_VALUES_C2(rs(instr), rsVal, rt(instr), rtVal);

// Rd = Rs < Rt (unsigned)
PGXP_value& prsVal = g_state.pgxp_gpr[rt(instr)];
PGXP_value& prsVal = g_state.pgxp_gpr[rs(instr)];
PGXP_value& prtVal = g_state.pgxp_gpr[rt(instr)];
Validate(&prsVal, rsVal);
Validate(&prtVal, rtVal);
Expand Down

0 comments on commit 64a28aa

Please sign in to comment.