mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-03-06 15:01:04 -05:00
Kill some unnecessary c_str and use StrToWxStr in a few places that I missed.
This commit is contained in:
@@ -221,7 +221,7 @@ void DSPDebuggerLLE::UpdateSymbolMap()
|
||||
for (SymbolDB::XFuncMap::iterator iter = DSPSymbols::g_dsp_symbol_db.GetIterator();
|
||||
iter != DSPSymbols::g_dsp_symbol_db.End(); ++iter)
|
||||
{
|
||||
int idx = m_SymbolList->Append(StrToWxStr(iter->second.name.c_str()));
|
||||
int idx = m_SymbolList->Append(StrToWxStr(iter->second.name));
|
||||
m_SymbolList->SetClientData(idx, (void*)&iter->second);
|
||||
}
|
||||
m_SymbolList->Thaw();
|
||||
|
||||
Reference in New Issue
Block a user