mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
win32 build fix - no #elifdef on MSVC
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@186 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -67,7 +67,7 @@ void DllAbout(HWND _hParent)
|
||||
|
||||
void DllConfig(HWND _hParent)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
#if defined(_WIN32)
|
||||
wxWindow win;
|
||||
win.SetHWND(_hParent);
|
||||
ConfigDialog frame(&win);
|
||||
@ -94,7 +94,7 @@ void DllConfig(HWND _hParent)
|
||||
frame.ShowModal();
|
||||
win.SetHWND(0);
|
||||
|
||||
#elifdef __linux__
|
||||
#elif defined(__linux__)
|
||||
ConfigDialog frame(NULL);
|
||||
g_Config.Load();
|
||||
XVisualInfo *vi;
|
||||
|
Reference in New Issue
Block a user