Wiimote is not a test anymore, it works great.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1259 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
XTra.KrazzY 2008-11-22 22:34:54 +00:00
parent 8b7793117f
commit 6c8a4f39c5

View File

@ -87,12 +87,12 @@ extern "C" void GetDllInfo (PLUGIN_INFO* _PluginInfo)
_PluginInfo->Version = 0x0100; _PluginInfo->Version = 0x0100;
_PluginInfo->Type = PLUGIN_TYPE_WIIMOTE; _PluginInfo->Type = PLUGIN_TYPE_WIIMOTE;
#ifdef DEBUGFAST #ifdef DEBUGFAST
sprintf(_PluginInfo->Name, "Wiimote Test (DebugFast) " VERSION_STRING); sprintf(_PluginInfo->Name, "Wiimote Plug-in (DebugFast) " VERSION_STRING);
#else #else
#ifndef _DEBUG #ifndef _DEBUG
sprintf(_PluginInfo->Name, "Wiimote Test " VERSION_STRING); sprintf(_PluginInfo->Name, "Wiimote Plug-in " VERSION_STRING);
#else #else
sprintf(_PluginInfo->Name, "Wiimote Test (Debug) " VERSION_STRING); sprintf(_PluginInfo->Name, "Wiimote Plug-in (Debug) " VERSION_STRING);
#endif #endif
#endif #endif
} }
@ -102,9 +102,9 @@ extern "C" void DllAbout(HWND _hParent)
{ {
#if !defined(OSX64) #if !defined(OSX64)
wxAboutDialogInfo info; wxAboutDialogInfo info;
info.SetName(_T("Wiimote test plugin")); info.SetName(_T("Wiimote plug-in"));
info.AddDeveloper(_T("masken (masken3@gmail.com)")); info.AddDeveloper(_T("masken (masken3@gmail.com)"));
info.SetDescription(_T("Wiimote test plugin")); info.SetDescription(_T("Wiimote plug-in"));
wxAboutBox(info); wxAboutBox(info);
#endif #endif
} }