diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-09-17 23:17:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-17 23:17:16 +0200 |
commit | 9f5124252435c065f27c9c270da18a4c0ffea143 (patch) | |
tree | a061b8de67d72a1d1ea009ae0027c1408e523286 /src/video_core | |
parent | Merge pull request #4594 from german77/MotionHID (diff) | |
parent | decode/image: Eliminate switch fallthrough in DecodeImage() (diff) | |
download | yuzu-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')
-rw-r--r-- | src/video_core/shader/decode/image.cpp | 1 |
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; } |