second try

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1675 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2008-12-26 09:36:35 +00:00
parent a679e345fd
commit 1413a40944
9 changed files with 1273 additions and 10 deletions

View File

@ -23,8 +23,6 @@
#include "PadSimple.h"
#include "IniFile.h"
// FIXME
#undef HAVE_WX
#if defined(HAVE_WX) && HAVE_WX
#include "GUI/ConfigDlg.h"
#endif
@ -150,12 +148,15 @@ void GetDllInfo(PLUGIN_INFO* _PluginInfo)
_PluginInfo->Type = PLUGIN_TYPE_PAD;
#ifdef DEBUGFAST
sprintf(_PluginInfo->Name, "Dolphin Pad Event (DebugFast)");
#elif defined _DEBUG
sprintf(_PluginInfo->Name, "Dolphin Pad Event");
sprintf(_PluginInfo->Name, "Dolphin KB/X360pad (DebugFast)");
#else
sprintf(_PluginInfo->Name, "Dolphin Pad Event (Debug)");
#ifndef _DEBUG
sprintf(_PluginInfo->Name, "Dolphin KB/X360pad");
#else
sprintf(_PluginInfo->Name, "Dolphin KB/X360pad (Debug)");
#endif
#endif
}
void DllConfig(HWND _hParent)