summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-02-21 19:57:22 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-02-21 19:57:27 +0100
commit7dc488a375c81dbf693660b62e4974773caff1bd (patch)
treed45b569c0c060eed74fb28037b07e41cd4b5cd0e /src/video_core/shader/decode
parentMerge pull request #3433 from namkazt/patch-1 (diff)
downloadyuzu-7dc488a375c81dbf693660b62e4974773caff1bd.tar
yuzu-7dc488a375c81dbf693660b62e4974773caff1bd.tar.gz
yuzu-7dc488a375c81dbf693660b62e4974773caff1bd.tar.bz2
yuzu-7dc488a375c81dbf693660b62e4974773caff1bd.tar.lz
yuzu-7dc488a375c81dbf693660b62e4974773caff1bd.tar.xz
yuzu-7dc488a375c81dbf693660b62e4974773caff1bd.tar.zst
yuzu-7dc488a375c81dbf693660b62e4974773caff1bd.zip
Diffstat (limited to 'src/video_core/shader/decode')
-rw-r--r--src/video_core/shader/decode/texture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/decode/texture.cpp b/src/video_core/shader/decode/texture.cpp
index 542636430..bee7d8cad 100644
--- a/src/video_core/shader/decode/texture.cpp
+++ b/src/video_core/shader/decode/texture.cpp
@@ -527,7 +527,7 @@ Node4 ShaderIR::GetTextureCode(Instruction instr, TextureType texture_type,
const bool is_bindless = bindless_reg.has_value();
UNIMPLEMENTED_IF(texture_type == TextureType::TextureCube && is_array && is_shadow);
- ASSERT_MSG(texture_type != TextureType::Texture3D || is_array || is_shadow,
+ ASSERT_MSG(texture_type != TextureType::Texture3D || !is_array || !is_shadow,
"Illegal texture type");
const SamplerInfo info{texture_type, is_array, is_shadow, false};