mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
make config box open on linux
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1226 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -111,16 +111,14 @@ extern "C" void DllAbout(HWND _hParent)
|
|||||||
|
|
||||||
extern "C" void DllConfig(HWND _hParent)
|
extern "C" void DllConfig(HWND _hParent)
|
||||||
{
|
{
|
||||||
#if defined(_WIN32)
|
|
||||||
wxWindow win;
|
wxWindow win;
|
||||||
|
#ifdef _WIN32
|
||||||
win.SetHWND(_hParent);
|
win.SetHWND(_hParent);
|
||||||
|
#endif
|
||||||
ConfigDialog frame(&win);
|
ConfigDialog frame(&win);
|
||||||
frame.ShowModal();
|
frame.ShowModal();
|
||||||
|
#ifdef _WIN32
|
||||||
win.SetHWND(0);
|
win.SetHWND(0);
|
||||||
#elif defined(__linux__)
|
|
||||||
//TODO
|
|
||||||
#else
|
|
||||||
//TODO
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user