more path updates

Dolphin.ini moved to User/Config on linux
waiting for windows ppl to do their job:P


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1133 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2008-11-11 22:00:09 +00:00
parent 5bbde79642
commit 5e2142a901
3 changed files with 28 additions and 24 deletions

View File

@ -40,14 +40,10 @@ void CPluginManager::ScanForPlugins(wxWindow* _wxWindow)
m_PluginInfos.clear();
CFileSearch::XStringVector Directories;
Directories.push_back(std::string("Plugins"));
Directories.push_back(std::string(PLUGINS_DIR));
CFileSearch::XStringVector Extensions;
#ifdef _WIN32
Extensions.push_back("*.dll");
#else
Extensions.push_back("*.so");
#endif
Extensions.push_back("*." PLUGIN_SUFFIX);
CFileSearch FileSearch(Extensions, Directories);
const CFileSearch::XStringVector& rFilenames = FileSearch.GetFileNames();