summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader
diff options
context:
space:
mode:
authorNguyen Dac Nam <nam.kazt.91@gmail.com>2020-03-14 04:07:40 +0100
committerGitHub <noreply@github.com>2020-03-14 04:07:40 +0100
commit3287b1247d97682b443f8db050b4ee73dac1d05b (patch)
tree2e7b406b7844fa77d0a3b9415d1048ab4764805a /src/video_core/shader
parentnit (diff)
downloadyuzu-3287b1247d97682b443f8db050b4ee73dac1d05b.tar
yuzu-3287b1247d97682b443f8db050b4ee73dac1d05b.tar.gz
yuzu-3287b1247d97682b443f8db050b4ee73dac1d05b.tar.bz2
yuzu-3287b1247d97682b443f8db050b4ee73dac1d05b.tar.lz
yuzu-3287b1247d97682b443f8db050b4ee73dac1d05b.tar.xz
yuzu-3287b1247d97682b443f8db050b4ee73dac1d05b.tar.zst
yuzu-3287b1247d97682b443f8db050b4ee73dac1d05b.zip
Diffstat (limited to 'src/video_core/shader')
-rw-r--r--src/video_core/shader/decode/bfe.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/shader/decode/bfe.cpp b/src/video_core/shader/decode/bfe.cpp
index 69ef9013d..8e3b46e8e 100644
--- a/src/video_core/shader/decode/bfe.cpp
+++ b/src/video_core/shader/decode/bfe.cpp
@@ -68,8 +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));
- auto result =
- SignedOperation(OperationCode::IBitfieldExtract, is_signed, op_a, offset, bits);
+ auto result = SignedOperation(OperationCode::IBitfieldExtract, is_signed, op_a, offset, bits);
SetRegister(bb, instr.gpr0, std::move(result));
return pc;