remove some wxString references I missed

This commit is contained in:
Peter Tissen 2014-04-01 19:01:42 +02:00
parent bcb9ad94c1
commit 02729695ff
4 changed files with 21 additions and 21 deletions

View file

@ -34,7 +34,7 @@ PPCThread& PPCThreadManager::AddThread(PPCThreadType type)
default: assert(0);
}
new_thread->SetId(Emu.GetIdManager().GetNewID(wxString::Format("%s Thread", name).ToStdString(), new_thread));
new_thread->SetId(Emu.GetIdManager().GetNewID(fmt::Format("%s Thread", name), new_thread));
m_threads.Add(new_thread);
wxGetApp().SendDbgCommand(DID_CREATE_THREAD, new_thread);