summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode/ffma.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-11-07 06:47:24 +0100
committerGitHub <noreply@github.com>2019-11-07 06:47:24 +0100
commit344d15f61e3083a427604d5a5e21132487032ce1 (patch)
tree5fe1cb60db1a671814da2a2167619728a7346277 /src/video_core/shader/decode/ffma.cpp
parentMerge pull request #3078 from bunnei/azure-rename-partial (diff)
parentshader/decode: Reduce severity of arithmetic rounding warnings (diff)
downloadyuzu-344d15f61e3083a427604d5a5e21132487032ce1.tar
yuzu-344d15f61e3083a427604d5a5e21132487032ce1.tar.gz
yuzu-344d15f61e3083a427604d5a5e21132487032ce1.tar.bz2
yuzu-344d15f61e3083a427604d5a5e21132487032ce1.tar.lz
yuzu-344d15f61e3083a427604d5a5e21132487032ce1.tar.xz
yuzu-344d15f61e3083a427604d5a5e21132487032ce1.tar.zst
yuzu-344d15f61e3083a427604d5a5e21132487032ce1.zip
Diffstat (limited to 'src/video_core/shader/decode/ffma.cpp')
-rw-r--r--src/video_core/shader/decode/ffma.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/decode/ffma.cpp b/src/video_core/shader/decode/ffma.cpp
index ca2f39e8d..5973588d6 100644
--- a/src/video_core/shader/decode/ffma.cpp
+++ b/src/video_core/shader/decode/ffma.cpp
@@ -19,10 +19,10 @@ u32 ShaderIR::DecodeFfma(NodeBlock& bb, u32 pc) {
UNIMPLEMENTED_IF_MSG(instr.ffma.cc != 0, "FFMA cc not implemented");
if (instr.ffma.tab5980_0 != 1) {
- LOG_WARNING(HW_GPU, "FFMA tab5980_0({}) not implemented", instr.ffma.tab5980_0.Value());
+ LOG_DEBUG(HW_GPU, "FFMA tab5980_0({}) not implemented", instr.ffma.tab5980_0.Value());
}
if (instr.ffma.tab5980_1 != 0) {
- LOG_WARNING(HW_GPU, "FFMA tab5980_1({}) not implemented", instr.ffma.tab5980_1.Value());
+ LOG_DEBUG(HW_GPU, "FFMA tab5980_1({}) not implemented", instr.ffma.tab5980_1.Value());
}
const Node op_a = GetRegister(instr.gpr8);