Merge pull request #4316 from shenweip/patch-12

Fallback to default path if current directory doesn't exist.
This commit is contained in:
Henrik Rydgård 2013-10-25 14:38:33 -07:00
commit 4cc6171cf9

View File

@ -59,6 +59,9 @@ void Config::Load(const char *iniFileName, const char *controllerIniFilename) {
general->Get("CurrentDirectory", &currentDirectory, "");
general->Get("ShowDebuggerOnLoad", &bShowDebuggerOnLoad, false);
if (!File::Exists(currentDirectory))
currentDirectory = "";
std::string defaultLangRegion = "en_US";
if (bFirstRun) {
std::string langRegion = System_GetProperty(SYSPROP_LANGREGION);