summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SetupUnit.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-11-09 03:13:59 -0500
committerLioncash <mathew1800@gmail.com>2020-11-09 03:14:01 -0500
commit23a8baa6057c67298f68c6c5d65c177642125212 (patch)
treeda81d8049f31f2d2c114b21d2f69a7a5adedd1fc /Source/Core/VideoBackends/Software/SetupUnit.cpp
parent413d64e7fc778d82ddcad97ee37b35e377407f9f (diff)
Software: Migrate logging over to fmt
Migrates the software backend over to the fmt-capable logger.
Diffstat (limited to 'Source/Core/VideoBackends/Software/SetupUnit.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SetupUnit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/SetupUnit.cpp b/Source/Core/VideoBackends/Software/SetupUnit.cpp
index 4a4600fab4..589d404552 100644
--- a/Source/Core/VideoBackends/Software/SetupUnit.cpp
+++ b/Source/Core/VideoBackends/Software/SetupUnit.cpp
@@ -37,7 +37,7 @@ void SetupUnit::SetupVertex()
SetupQuad();
break;
case OpcodeDecoder::GX_DRAW_QUADS_2:
- WARN_LOG(VIDEO, "Non-standard primitive drawing command GL_DRAW_QUADS_2");
+ WARN_LOG_FMT(VIDEO, "Non-standard primitive drawing command GL_DRAW_QUADS_2");
SetupQuad();
break;
case OpcodeDecoder::GX_DRAW_TRIANGLES: