summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode/half_set.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-11-04 06:24:58 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-11-07 05:43:38 +0100
commit39c66abd91c62f95361e63bacd253027e7617022 (patch)
treeace064fa6726873e6b473068a0f062d0e71eb4e3 /src/video_core/shader/decode/half_set.cpp
parentshader/arithmetic: Reduce RRO stub severity (diff)
downloadyuzu-39c66abd91c62f95361e63bacd253027e7617022.tar
yuzu-39c66abd91c62f95361e63bacd253027e7617022.tar.gz
yuzu-39c66abd91c62f95361e63bacd253027e7617022.tar.bz2
yuzu-39c66abd91c62f95361e63bacd253027e7617022.tar.lz
yuzu-39c66abd91c62f95361e63bacd253027e7617022.tar.xz
yuzu-39c66abd91c62f95361e63bacd253027e7617022.tar.zst
yuzu-39c66abd91c62f95361e63bacd253027e7617022.zip
Diffstat (limited to 'src/video_core/shader/decode/half_set.cpp')
-rw-r--r--src/video_core/shader/decode/half_set.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/decode/half_set.cpp b/src/video_core/shader/decode/half_set.cpp
index 48ca7a4af..848e46874 100644
--- a/src/video_core/shader/decode/half_set.cpp
+++ b/src/video_core/shader/decode/half_set.cpp
@@ -20,8 +20,8 @@ u32 ShaderIR::DecodeHalfSet(NodeBlock& bb, u32 pc) {
const Instruction instr = {program_code[pc]};
const auto opcode = OpCode::Decode(instr);
- if (instr.hset2.ftz != 0) {
- LOG_WARNING(HW_GPU, "{} FTZ not implemented", opcode->get().GetName());
+ if (instr.hset2.ftz == 0) {
+ LOG_DEBUG(HW_GPU, "{} without FTZ is not implemented", opcode->get().GetName());
}
Node op_a = UnpackHalfFloat(GetRegister(instr.gpr8), instr.hset2.type_a);