summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode
diff options
context:
space:
mode:
authorNguyen Dac Nam <nam.kazt.91@gmail.com>2020-03-14 03:57:24 +0100
committerGitHub <noreply@github.com>2020-03-14 03:57:24 +0100
commit240d45830d16342cb357427894690ddde660e259 (patch)
tree4cd876e9f10e7e3003754ef474dfedd61facf0e2 /src/video_core/shader/decode
parentclang-format (diff)
downloadyuzu-240d45830d16342cb357427894690ddde660e259.tar
yuzu-240d45830d16342cb357427894690ddde660e259.tar.gz
yuzu-240d45830d16342cb357427894690ddde660e259.tar.bz2
yuzu-240d45830d16342cb357427894690ddde660e259.tar.lz
yuzu-240d45830d16342cb357427894690ddde660e259.tar.xz
yuzu-240d45830d16342cb357427894690ddde660e259.tar.zst
yuzu-240d45830d16342cb357427894690ddde660e259.zip
Diffstat (limited to 'src/video_core/shader/decode')
-rw-r--r--src/video_core/shader/decode/bfe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/decode/bfe.cpp b/src/video_core/shader/decode/bfe.cpp
index 80253aee3..69ef9013d 100644
--- a/src/video_core/shader/decode/bfe.cpp
+++ b/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));