Fixed vs2010 SVNRevGen project. (Also changed "make_svnrev.h.vbs" to jscript and gave it some comments :p) Removed some old plugin stuff.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7030 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Jordan Woyak 2011-02-01 04:20:51 +00:00
parent 1b288dcdde
commit 53ae9e9e8f
6 changed files with 95 additions and 114 deletions

View file

@ -603,23 +603,6 @@ std::string GetBundleDirectory()
}
#endif
std::string GetPluginsDirectory()
{
std::string pluginsDir;
#if defined (__APPLE__)
pluginsDir = GetBundleDirectory();
pluginsDir += DIR_SEP;
pluginsDir += PLUGINS_DIR;
#else
pluginsDir = PLUGINS_DIR;
#endif
pluginsDir += DIR_SEP;
INFO_LOG(COMMON, "GetPluginsDirectory: Setting to %s:", pluginsDir.c_str());
return pluginsDir;
}
std::string GetSysDirectory()
{
std::string sysDir;