remove redundant c_str -> string -> c_str conversions

This commit is contained in:
Peter Tissen 2014-04-01 17:22:57 +02:00
parent 8ac226ae69
commit febe8624bf
7 changed files with 9 additions and 9 deletions

View file

@ -393,7 +393,7 @@ s64 CPUThread::ExecAsCallback(u64 pc, bool wait, u64 a1, u64 a2, u64 a3, u64 a4)
{
if (Emu.IsStopped())
{
ConLog.Warning("ExecAsCallback(wait=%s) aborted", std::string(wait ? "true" : "false").c_str());
ConLog.Warning("ExecAsCallback(wait=%s) aborted", wait ? "true" : "false");
return CELL_EABORT; // doesn't mean anything
}
Sleep(1);