mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-02 13:01:18 +12:00
UI: Correctly interpret supporter names as UTF8
This commit is contained in:
parent
057ef4598e
commit
522b5ef260
1 changed files with 1 additions and 1 deletions
|
@ -2054,7 +2054,7 @@ public:
|
||||||
wxString& nameList = ((i % 2) == 0) ? nameListLeft : nameListRight;
|
wxString& nameList = ((i % 2) == 0) ? nameListLeft : nameListRight;
|
||||||
if (i >= 2)
|
if (i >= 2)
|
||||||
nameList.append("\n");
|
nameList.append("\n");
|
||||||
nameList.append(name);
|
nameList.append(wxString::FromUTF8(name));
|
||||||
}
|
}
|
||||||
|
|
||||||
gridSizer->Add(new wxStaticText(parent, wxID_ANY, nameListLeft), wxSizerFlags());
|
gridSizer->Add(new wxStaticText(parent, wxID_ANY, nameListLeft), wxSizerFlags());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue