Fix status bar load text.

This commit is contained in:
Frank-74 2015-11-20 21:15:31 +00:00
parent 8d8c52fac4
commit 6007d9bce0
1 changed files with 1 additions and 1 deletions

View File

@ -1676,7 +1676,7 @@ bool CN64System::LoadState(const char * FileName)
}
WriteTrace(TraceDebug, __FUNCTION__ ": 13");
std::wstring LoadMsg = g_Lang->GetString(MSG_LOADED_STATE);
g_Notify->DisplayMessage(5, stdstr_f("%s %s", LoadMsg.c_str(), CPath(FileNameStr).GetNameExtension()).ToUTF16().c_str());
g_Notify->DisplayMessage(5, stdstr_f("%ws %s", LoadMsg.c_str(), CPath(FileNameStr).GetNameExtension().c_str()).ToUTF16().c_str());
WriteTrace(TraceDebug, __FUNCTION__ ": Done");
return true;
}