summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2020-09-17 23:17:16 +0200
committerGitHub <noreply@github.com>2020-09-17 23:17:16 +0200
commit9f5124252435c065f27c9c270da18a4c0ffea143 (patch)
treea061b8de67d72a1d1ea009ae0027c1408e523286 /src/video_core/shader/decode
parentMerge pull request #4594 from german77/MotionHID (diff)
parentdecode/image: Eliminate switch fallthrough in DecodeImage() (diff)
downloadyuzu-9f5124252435c065f27c9c270da18a4c0ffea143.tar
yuzu-9f5124252435c065f27c9c270da18a4c0ffea143.tar.gz
yuzu-9f5124252435c065f27c9c270da18a4c0ffea143.tar.bz2
yuzu-9f5124252435c065f27c9c270da18a4c0ffea143.tar.lz
yuzu-9f5124252435c065f27c9c270da18a4c0ffea143.tar.xz
yuzu-9f5124252435c065f27c9c270da18a4c0ffea143.tar.zst
yuzu-9f5124252435c065f27c9c270da18a4c0ffea143.zip
Diffstat (limited to 'src/video_core/shader/decode')
-rw-r--r--src/video_core/shader/decode/image.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/shader/decode/image.cpp b/src/video_core/shader/decode/image.cpp
index cd424aa91..618d309d2 100644
--- a/src/video_core/shader/decode/image.cpp
+++ b/src/video_core/shader/decode/image.cpp
@@ -470,6 +470,7 @@ u32 ShaderIR::DecodeImage(NodeBlock& bb, u32 pc) {
default:
break;
}
+ break;
default:
break;
}