mirror of
https://github.com/stenzek/duckstation.git
synced 2024-11-27 16:10:45 +00:00
CPU/PGXP: Fix typo in SLTU()
This commit is contained in:
parent
b656e1d4ca
commit
64a28aac53
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user