Merge pull request #769 from lioncash/string-fmt

Software: Get rid of an unnecessary format string in SWmain.cpp
This commit is contained in:
Lioncash 2014-08-10 05:39:39 -04:00
commit e0b0b7eaf5
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}