From 1def738932c0cf1fb571c55c78a49232c5aa6128 Mon Sep 17 00:00:00 2001 From: death2droid Date: Sun, 17 May 2009 01:45:10 +0000 Subject: [PATCH] A Linux patch for Japanese games names conversion by siliconjoe git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3258 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DolphinWX/Src/GameListCtrl.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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; }