Missed one instance of the Shift-JIS font. Hopefully this fixes issue 2736?
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5633 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
3603f05398
commit
91e1d053d3
|
@ -760,7 +760,11 @@ bool CMemcardManager::ReloadMemcard(const char *fileName, int card)
|
|||
if (!memoryCard[card]->DEntry_Comment2(j, comment)) comment[0]=0;
|
||||
|
||||
bool ascii = memoryCard[card]->IsAsciiEncoding();
|
||||
wxCSConv SJISConv(wxT("SHIFT_JIS"));
|
||||
#ifdef __linux__
|
||||
wxCSConv SJISConv(wxFontMapper::GetEncodingName(wxFONTENCODING_EUC_JP));
|
||||
#else
|
||||
wxCSConv SJISConv(wxFontMapper::GetEncodingName(wxFONTENCODING_SHIFT_JIS));
|
||||
#endif
|
||||
wxTitle = wxString(title, ascii ? *wxConvCurrent : SJISConv);
|
||||
wxComment = wxString(comment, ascii ? *wxConvCurrent : SJISConv);
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#include <wx/stattext.h>
|
||||
#include <wx/listctrl.h>
|
||||
#include <wx/imaglist.h>
|
||||
#include <wx/fontmap.h>
|
||||
|
||||
#include "IniFile.h"
|
||||
#include "FileUtil.h"
|
||||
|
|
Loading…
Reference in New Issue