[Project64] Fix showing file name in break point

This commit is contained in:
zilmar 2015-11-07 07:51:41 +11:00
parent 43f175ce70
commit d56236356a
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ void CNotification::BreakPoint ( const wchar_t * FileName, const int LineNumber
{
if (g_Settings->LoadBool(Debugger_Enabled))
{
DisplayError(stdstr_f("Break point found at\n%s\n%d",FileName, LineNumber).ToUTF16().c_str());
DisplayError(stdstr_f("Break point found at\n%ws\n%d", FileName, LineNumber).ToUTF16().c_str());
if (IsDebuggerPresent() != 0)
{
DebugBreak();