diff options
| author | j4ck.fr0st <j4ck.fr0st@gmail.com> | 2010-01-21 20:58:26 +0000 |
|---|---|---|
| committer | j4ck.fr0st <j4ck.fr0st@gmail.com> | 2010-01-21 20:58:26 +0000 |
| commit | a08bfc134469c5919ec3d448201b9ba130b8b6bd (patch) | |
| tree | 1af7071155d953c7d76788f4a29e8655748b985e /Source/Plugins/Plugin_VideoSoftware | |
| parent | 8f4149b3703f4e59cab57638347dfe15bd571285 (diff) | |
thats more like it i guess...
does the Software Plug in not check for RenderToMainframe on purpose?
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4920 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Plugins/Plugin_VideoSoftware')
| -rw-r--r-- | Source/Plugins/Plugin_VideoSoftware/Src/GLUtil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Plugins/Plugin_VideoSoftware/Src/GLUtil.cpp b/Source/Plugins/Plugin_VideoSoftware/Src/GLUtil.cpp index 2407bd8324..5aea32ca15 100644 --- a/Source/Plugins/Plugin_VideoSoftware/Src/GLUtil.cpp +++ b/Source/Plugins/Plugin_VideoSoftware/Src/GLUtil.cpp @@ -148,10 +148,10 @@ bool OpenGL_Create(SVideoInitialize &_VideoInitialize, int _twidth, int _theight wxSize size(_twidth, _theight);
if ( g_VideoInitialize.pWindowHandle == NULL) {
- GLWin.frame = new wxFrame((wxWindow *)g_VideoInitialize.pWindowHandle,
+ GLWin.frame = new wxFrame((wxWindow *)NULL,
-1, _("Dolphin"), wxPoint(50,50), size);
} else {
- GLWin.frame = new wxFrame((wxWindow *)NULL,
+ GLWin.frame = new wxFrame((wxWindow *)g_VideoInitialize.pWindowHandle,
-1, _("Dolphin"), wxPoint(50,50), size);
}
|
