diff --git a/Source/Core/DolphinWX/Src/GameListCtrl.cpp b/Source/Core/DolphinWX/Src/GameListCtrl.cpp index 4acc0b6e19..7bcf08b448 100644 --- a/Source/Core/DolphinWX/Src/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/Src/GameListCtrl.cpp @@ -1001,9 +1001,8 @@ bool CGameListCtrl::CopySJISToString( wxString& _rDestination, const char* _src } } #else - // not implement other than windows - //_rDestination = _src; - //returnCode = true; + _rDestination = wxString(wxString(_src,wxConvLibc),wxConvUTF8); + returnCode = true; #endif return returnCode; }