dsp hle: fixed stupid mistake of misread function name:( thanks XK

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@536 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-09-16 09:50:20 +00:00
parent d96d93b7fa
commit 2ab92c9222

View File

@ -86,11 +86,7 @@ BOOL APIENTRY DllMain(HINSTANCE hinstDLL, // DLL module handle
void DllDebugger(HWND _hParent)
{
#if defined (_DEBUG) && defined (_WIN32)
g_Dialog.Create(NULL); //_hParent);
g_Dialog.ShowWindow(SW_SHOW);
#endif
// TODO: implement
}
void GetDllInfo(PLUGIN_INFO* _PluginInfo)
@ -118,7 +114,10 @@ void DllAbout(HWND _hParent)
void DllConfig(HWND _hParent)
{
// TODO: implement
#ifdef _WIN32
CConfigDlg configDlg;
configDlg.DoModal(_hParent);
#endif
}
void DSP_Initialize(DSPInitialize _dspInitialize)