revert changes to GetSysDirectory from last commit, I was trying to fix my issue with CWD going all wacky (unsuccessfully).

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3943 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2009-08-06 12:32:07 +00:00
parent 95344be674
commit fa731c0b29

View File

@ -579,15 +579,14 @@ std::string GetSysDirectory()
sysDir = GetBundleDirectory();
sysDir += DIR_SEP;
sysDir += SYSDATA_DIR;
sysDir += DIR_SEP;
#elif defined __linux__
sysDir = SYSDATA_DIR;
sysDir += DIR_SEP;
// FIXME global install
#else
sysDir = FULL_SYSDATA_DIR;
sysDir = SYSDATA_DIR;
#endif
sysDir += DIR_SEP;
INFO_LOG(COMMON, "GetSysDirectory: Setting to %s:", sysDir.c_str());
return sysDir;
}