mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
wxgl fixes
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1524 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -10,12 +10,18 @@ class CFrame : public wxFrame
|
||||
|
||||
CFrame(wxFrame* parent,
|
||||
wxWindowID id = wxID_ANY,
|
||||
const wxString& title = _T("Dolphin"),
|
||||
const wxString& title = wxT("Dolphin"),
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = wxDEFAULT_FRAME_STYLE | wxNO_FULL_REPAINT_ON_RESIZE);
|
||||
|
||||
void* GetRenderHandle() {return(m_Panel->GetHandle());}
|
||||
void* GetRenderHandle() {
|
||||
#ifdef _WIN32
|
||||
return(m_Panel->GetHandle());
|
||||
#else
|
||||
return this;
|
||||
#endif
|
||||
}
|
||||
|
||||
wxStatusBar* m_pStatusBar;
|
||||
|
||||
|
Reference in New Issue
Block a user