mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
A compile fix for Linux/OSX in InfoWindow.cpp and also get OSX to stop crashing from loading the audio backend. It's a pretty bad way to do it, but I couldn't find another way. Now to figure out why SMS looks horrible in OSX
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3074 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -65,7 +65,7 @@ void wxInfoWindow::Init_ChildControls()
|
||||
m_Tab_Log = new wxPanel(m_Notebook_Main, ID_TAB_LOG, wxDefaultPosition, wxDefaultSize);
|
||||
m_TextCtrl_Log = new wxTextCtrl(m_Tab_Log,
|
||||
ID_TEXTCTRL_LOG,
|
||||
wxT(
|
||||
wxString::FromAscii(std::string(
|
||||
//Dolphin revision number
|
||||
|
||||
std::string("Dolphin Revision: ") + SVN_REV_STR +"\n"+
|
||||
@ -80,7 +80,7 @@ void wxInfoWindow::Init_ChildControls()
|
||||
//CPU Info
|
||||
std::string("Processor Information:\n")+cpu_info.Summarize()+"\n\n"
|
||||
|
||||
),
|
||||
).c_str()),
|
||||
wxDefaultPosition, wxSize(100, 600),
|
||||
wxTE_MULTILINE | wxTE_READONLY | wxTE_DONTWRAP);
|
||||
|
||||
|
Reference in New Issue
Block a user