aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/shader/decode/arithmetic_half.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-11-04 02:24:58 -0300
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-11-07 01:43:38 -0300
commit39c66abd91c62f95361e63bacd253027e7617022 (patch)
treeace064fa6726873e6b473068a0f062d0e71eb4e3 /src/video_core/shader/decode/arithmetic_half.cpp
parentc4374d0d4198954675d97193655e953d8c31a7fe (diff)
shader/decode: Reduce severity of arithmetic rounding warnings
Diffstat (limited to 'src/video_core/shader/decode/arithmetic_half.cpp')
-rw-r--r--src/video_core/shader/decode/arithmetic_half.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/decode/arithmetic_half.cpp b/src/video_core/shader/decode/arithmetic_half.cpp
index b06cbe441..ee7d9a29d 100644
--- a/src/video_core/shader/decode/arithmetic_half.cpp
+++ b/src/video_core/shader/decode/arithmetic_half.cpp
@@ -21,8 +21,8 @@ u32 ShaderIR::DecodeArithmeticHalf(NodeBlock& bb, u32 pc) {
if (opcode->get().GetId() == OpCode::Id::HADD2_C ||
opcode->get().GetId() == OpCode::Id::HADD2_R) {
- if (instr.alu_half.ftz != 0) {
- LOG_WARNING(HW_GPU, "{} FTZ not implemented", opcode->get().GetName());
+ if (instr.alu_half.ftz == 0) {
+ LOG_DEBUG(HW_GPU, "{} without FTZ is not implemented", opcode->get().GetName());
}
}