2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01: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
commit 9f51242524
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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