mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-21 05:51:39 +00:00
shader_recompiler: Set correct operand field for VOP3b sdst. (#1335)
This commit is contained in:
parent
f005a95a40
commit
adab68647d
|
@ -654,7 +654,7 @@ void GcnDecodeContext::decodeInstructionVOP3(uint64_t hexInstruction) {
|
|||
|
||||
OpcodeVOP3 vop3Op = static_cast<OpcodeVOP3>(op);
|
||||
if (IsVop3BEncoding(m_instruction.opcode)) {
|
||||
m_instruction.dst[1].field = OperandField::ScalarGPR;
|
||||
m_instruction.dst[1].field = getOperandField(sdst);
|
||||
m_instruction.dst[1].type = ScalarType::Uint64;
|
||||
m_instruction.dst[1].code = sdst;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue