Added mth patchs / icon and a fist SDL support on OGL plugin, not work ...

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@182 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
tmator 2008-08-12 23:17:29 +00:00
parent f893f3f17b
commit ac6d34cd10
6 changed files with 100 additions and 12 deletions

View file

@ -21,6 +21,10 @@
#include "OS\Win32.h"
#endif
#ifdef MACOSX
#include "SDL/SDL.h"
#endif
#include "GUI/ConfigDlg.h"
#include "Render.h"
@ -90,7 +94,7 @@ void DllConfig(HWND _hParent)
frame.ShowModal();
win.SetHWND(0);
#else
#elifdef __linux__
ConfigDialog frame(NULL);
g_Config.Load();
XVisualInfo *vi;
@ -126,6 +130,10 @@ void DllConfig(HWND _hParent)
}
}
frame.ShowModal();
#else
//TODO
#endif
}