diff options
| -rw-r--r-- | src/video_core/shader/decode/conversion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/decode/conversion.cpp b/src/video_core/shader/decode/conversion.cpp index 6307d1524..fbbaab584 100644 --- a/src/video_core/shader/decode/conversion.cpp +++ b/src/video_core/shader/decode/conversion.cpp | |||
| @@ -89,7 +89,7 @@ u32 ShaderIR::DecodeConversion(NodeBlock& bb, u32 pc) { | |||
| 89 | value = SignedOperation(OperationCode::ILogicalShiftRight, input_signed, | 89 | value = SignedOperation(OperationCode::ILogicalShiftRight, input_signed, |
| 90 | std::move(value), Immediate(offset * 8)); | 90 | std::move(value), Immediate(offset * 8)); |
| 91 | } | 91 | } |
| 92 | 92 | ||
| 93 | value = ConvertIntegerSize(value, instr.conversion.src_size, input_signed); | 93 | value = ConvertIntegerSize(value, instr.conversion.src_size, input_signed); |
| 94 | value = GetOperandAbsNegInteger(value, instr.conversion.abs_a, false, input_signed); | 94 | value = GetOperandAbsNegInteger(value, instr.conversion.abs_a, false, input_signed); |
| 95 | value = SignedOperation(OperationCode::FCastInteger, input_signed, PRECISE, value); | 95 | value = SignedOperation(OperationCode::FCastInteger, input_signed, PRECISE, value); |