summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWmain.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-08-10 05:39:39 -0400
committerLioncash <mathew1800@gmail.com>2014-08-10 05:39:39 -0400
commite0b0b7eaf54332569b4382921359ba7eb283cb6f (patch)
treec1af816aaacea50d51d02a84becb272b3ce12be9 /Source/Core/VideoBackends/Software/SWmain.cpp
parent2ff44b5a66d81643f48aea7a7781ae9f8ac9c6d4 (diff)
parent6b49ddfec9c7a3188cbad42889c9151b0579d393 (diff)
Merge pull request #769 from lioncash/string-fmt
Software: Get rid of an unnecessary format string in SWmain.cpp
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWmain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp
index 415fa0547b..4892daeeee 100644
--- a/Source/Core/VideoBackends/Software/SWmain.cpp
+++ b/Source/Core/VideoBackends/Software/SWmain.cpp
@@ -79,7 +79,7 @@ bool VideoSoftware::Initialize(void *&window_handle)
GLInterface->SetMode(GLInterfaceMode::MODE_DETECT);
if (!GLInterface->Create(window_handle))
{
- INFO_LOG(VIDEO, "%s", "SWRenderer::Create failed\n");
+ INFO_LOG(VIDEO, "GLInterface::Create failed.");
return false;
}