Explorar el Código

decode/image: Eliminate switch fallthrough in DecodeImage()

Fortunately this didn't result in any issues, given the block that code
was falling through to would immediately break.
Lioncash hace 5 años
padre
commit
4944d48ee8
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      src/video_core/shader/decode/image.cpp

+ 1 - 0
src/video_core/shader/decode/image.cpp

@@ -470,6 +470,7 @@ u32 ShaderIR::DecodeImage(NodeBlock& bb, u32 pc) {
                 default:
                     break;
                 }
+                break;
             default:
                 break;
             }