summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWOGLWindow.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-11-12 14:51:28 +0100
committerGitHub <noreply@github.com>2020-11-12 14:51:28 +0100
commit8a621c2d5e7722de5148a0a40d4072445cffb361 (patch)
tree99878aba6ea4a45ff473092a7f9b8d1db7892ced /Source/Core/VideoBackends/Software/SWOGLWindow.cpp
parentec5313fe24fe0b301603466c12f402fc08605813 (diff)
parent21dd7a8ebb23ab05373ab65558a7a47927f402f1 (diff)
Merge pull request #9236 from lioncash/log-backend
VideoBackends: Migrate logging over to fmt
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWOGLWindow.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWOGLWindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoBackends/Software/SWOGLWindow.cpp b/Source/Core/VideoBackends/Software/SWOGLWindow.cpp
index e0e0e236c0..1a9fe69cf6 100644
--- a/Source/Core/VideoBackends/Software/SWOGLWindow.cpp
+++ b/Source/Core/VideoBackends/Software/SWOGLWindow.cpp
@@ -41,13 +41,13 @@ bool SWOGLWindow::Initialize(const WindowSystemInfo& wsi)
// Init extension support.
if (!GLExtensions::Init(m_gl_context.get()))
{
- ERROR_LOG(VIDEO, "GLExtensions::Init failed!Does your video card support OpenGL 2.0?");
+ ERROR_LOG_FMT(VIDEO, "GLExtensions::Init failed!Does your video card support OpenGL 2.0?");
return false;
}
else if (GLExtensions::Version() < 310)
{
- ERROR_LOG(VIDEO, "OpenGL Version %d detected, but at least 3.1 is required.",
- GLExtensions::Version());
+ ERROR_LOG_FMT(VIDEO, "OpenGL Version {} detected, but at least 3.1 is required.",
+ GLExtensions::Version());
return false;
}