mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Shift-JIS is not available on most linux platforms as it is not unicode compliant. Substitute EUC-JP instead. Should fix issue 2736
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5632 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -53,7 +53,11 @@ CLogWindow::CLogWindow(CFrame *parent, wxWindowID id, const wxString &, const wx
|
||||
, Parent(parent) , m_LogAccess(true)
|
||||
, m_Log(NULL), m_cmdline(NULL), m_FontChoice(NULL)
|
||||
, m_LogSection(1)
|
||||
#ifdef __linux__
|
||||
, m_SJISConv(wxFONTENCODING_EUC_JP)
|
||||
#else
|
||||
, m_SJISConv(wxFONTENCODING_SHIFT_JIS)
|
||||
#endif
|
||||
{
|
||||
m_LogManager = LogManager::GetInstance();
|
||||
for (int i = 0; i < LogTypes::NUMBER_OF_LOGS; ++i)
|
||||
|
Reference in New Issue
Block a user