pcsx2: Fix string truncation on Windows

This commit is contained in:
Jonathan Li 2018-02-06 00:04:52 +00:00
parent f64488f818
commit 743caf46f2
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ protected:
}; };
void DBLoaderHelper::doError(bool doMsg) { void DBLoaderHelper::doError(bool doMsg) {
if (doMsg) Console.Error("GameDatabase: Bad file data [%s]", WX_STR(m_dest)); if (doMsg) Console.Error(L"GameDatabase: Bad file data [%s]", WX_STR(m_dest));
m_keyPair.Clear(); m_keyPair.Clear();
} }