bug fix - the about function has called the config function inside the plugin

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@18 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
fires.gc 2008-07-17 11:48:31 +00:00
parent 207bdcd60f
commit bce39df779
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ CPluginManager::OpenAbout(void* _Parent, const std::string& _rFilename)
{ {
if (Common::CPlugin::Load(_rFilename.c_str())) if (Common::CPlugin::Load(_rFilename.c_str()))
{ {
Common::CPlugin::Config((HWND)_Parent); Common::CPlugin::About((HWND)_Parent);
Common::CPlugin::Release(); Common::CPlugin::Release();
} }
} }