mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 16:49:58 -06:00
fix an ascii/wxstring in gamelistctrl, replace fromascii("") with wxemptystring, don't push_back 0 at the end of wstrings
This commit is contained in:
@ -27,10 +27,10 @@ wxString CDSPRegTable::GetValue(int row, int col)
|
||||
{
|
||||
case 0: return wxString::FromAscii(pdregname(row));
|
||||
case 1: return wxString::Format(wxT("0x%04x"), DSPCore_ReadRegister(row));
|
||||
default: return wxString::FromAscii("");
|
||||
default: return wxEmptyString;
|
||||
}
|
||||
}
|
||||
return wxString::FromAscii("");
|
||||
return wxEmptyString;
|
||||
}
|
||||
|
||||
void CDSPRegTable::SetValue(int, int, const wxString &)
|
||||
|
Reference in New Issue
Block a user