Browse Source

nit

pull/15/merge
Nguyen Dac Nam 6 years ago
committed by GitHub
parent
commit
240d45830d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/video_core/shader/decode/bfe.cpp

2
src/video_core/shader/decode/bfe.cpp

@ -68,7 +68,7 @@ u32 ShaderIR::DecodeBfe(NodeBlock& bb, u32 pc) {
Immediate(0), Immediate(8));
const auto bits = SignedOperation(OperationCode::IBitfieldExtract, is_signed, op_b,
Immediate(8), Immediate(8));
const auto result =
auto result =
SignedOperation(OperationCode::IBitfieldExtract, is_signed, op_a, offset, bits);
SetRegister(bb, instr.gpr0, std::move(result));

Loading…
Cancel
Save