mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-21 12:04:45 +00:00
fix S_CMPK_EQ_u32
This commit is contained in:
parent
de7f6e11e6
commit
64bacb20ce
1 changed files with 1 additions and 1 deletions
|
@ -472,7 +472,7 @@ void Translator::S_MIN_U32(const GcnInst& inst) {
|
|||
|
||||
void Translator::S_CMPK_EQ_U32(const GcnInst& inst) {
|
||||
const s32 simm16 = inst.control.sopk.simm;
|
||||
const IR::U32 src0{GetSrc(inst.src[0])};
|
||||
const IR::U32 src0{GetSrc(inst.dst[0])};
|
||||
const IR::U32 src1{ir.Imm32(simm16)};
|
||||
ir.SetScc(ir.IEqual(src0, src1));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue