mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
Tiny fix for Netplay window to display SJIS game titles correctly.
Do not scan device where emulator is already running git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4745 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -170,7 +170,7 @@ void NetPlay::DrawGUI()
|
||||
if (str_end == (int)std::string::npos || buffer.size() < 1)
|
||||
break; // we reached the end of the string
|
||||
|
||||
m_GameList_str.Add(wxString::FromAscii(buffer.c_str()));
|
||||
m_GameList_str.Add(wxString(buffer.c_str(), *wxConvCurrent));
|
||||
}
|
||||
|
||||
netmodes_str.Add(wxT("P2P Versus (2 players, faster)"));
|
||||
|
Reference in New Issue
Block a user