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:
hrydgard
2008-08-13 00:00:39 +00:00
parent e4e1fda2e4
commit 7b357c84df
3 changed files with 22 additions and 21 deletions

View File

@ -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;