mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-12-22 10:57:20 +00:00
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.
This commit is contained in:
parent
fcd0925ecf
commit
4944d48ee8
|
@ -470,6 +470,7 @@ u32 ShaderIR::DecodeImage(NodeBlock& bb, u32 pc) {
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue