mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 16:49:58 -06:00
Kill some unnecessary c_str and use StrToWxStr in a few places that I missed.
This commit is contained in:
@ -345,7 +345,7 @@ void CCodeWindow::UpdateCallstack()
|
||||
|
||||
for (size_t i = 0; i < stack.size(); i++)
|
||||
{
|
||||
int idx = callstack->Append(StrToWxStr(stack[i].Name.c_str()));
|
||||
int idx = callstack->Append(StrToWxStr(stack[i].Name));
|
||||
callstack->SetClientData(idx, (void*)(u64)stack[i].vAddress);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user