1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-03 18:06:32 -05:00

Merge pull request #4673 from lioncash/fallthrough

decode/image: Eliminate switch fallthrough in DecodeImage()
This commit is contained in:
Rodrigo Locatti
2020-09-17 21:17:16 +00:00
committed by GitHub

View File

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