mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-12-19 14:06:37 +00:00
shader_bytecode: Parenthesize conditional expression within GetTextureType()
Resolves a -Wlogical-op-parentheses warning.
This commit is contained in:
parent
c95c4442e9
commit
a0e2bd85a5
@ -518,7 +518,7 @@ union Instruction {
|
||||
return TextureType::Texture1D;
|
||||
}
|
||||
if (texture_info == 2 || texture_info == 8 || texture_info == 12 ||
|
||||
texture_info >= 4 && texture_info <= 6) {
|
||||
(texture_info >= 4 && texture_info <= 6)) {
|
||||
return TextureType::Texture2D;
|
||||
}
|
||||
if (texture_info == 7) {
|
||||
|
Loading…
Reference in New Issue
Block a user