diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-09-17 21:17:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-17 21:17:16 +0000 |
commit | 9f5124252435c065f27c9c270da18a4c0ffea143 (patch) | |
tree | a061b8de67d72a1d1ea009ae0027c1408e523286 /src | |
parent | 3f6d83b27cf3eb2e782185deeb852630037caa17 (diff) | |
parent | 4944d48ee842e85dfa2e3c3cbd045bc0d42ea281 (diff) |
Merge pull request #4673 from lioncash/fallthrough
decode/image: Eliminate switch fallthrough in DecodeImage()
Diffstat (limited to 'src')
-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; } |