mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-30 04:21:16 +00:00
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:
parent
95344be674
commit
fa731c0b29
@ -579,15 +579,14 @@ std::string GetSysDirectory()
|
|||||||
sysDir = GetBundleDirectory();
|
sysDir = GetBundleDirectory();
|
||||||
sysDir += DIR_SEP;
|
sysDir += DIR_SEP;
|
||||||
sysDir += SYSDATA_DIR;
|
sysDir += SYSDATA_DIR;
|
||||||
sysDir += DIR_SEP;
|
|
||||||
#elif defined __linux__
|
#elif defined __linux__
|
||||||
sysDir = SYSDATA_DIR;
|
sysDir = SYSDATA_DIR;
|
||||||
sysDir += DIR_SEP;
|
|
||||||
// FIXME global install
|
// FIXME global install
|
||||||
#else
|
#else
|
||||||
sysDir = FULL_SYSDATA_DIR;
|
sysDir = SYSDATA_DIR;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
sysDir += DIR_SEP;
|
||||||
INFO_LOG(COMMON, "GetSysDirectory: Setting to %s:", sysDir.c_str());
|
INFO_LOG(COMMON, "GetSysDirectory: Setting to %s:", sysDir.c_str());
|
||||||
return sysDir;
|
return sysDir;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user