mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-11 23:53:55 +00:00
Merge pull request #4316 from shenweip/patch-12
Fallback to default path if current directory doesn't exist.
This commit is contained in:
commit
4cc6171cf9
@ -59,6 +59,9 @@ void Config::Load(const char *iniFileName, const char *controllerIniFilename) {
|
||||
general->Get("CurrentDirectory", ¤tDirectory, "");
|
||||
general->Get("ShowDebuggerOnLoad", &bShowDebuggerOnLoad, false);
|
||||
|
||||
if (!File::Exists(currentDirectory))
|
||||
currentDirectory = "";
|
||||
|
||||
std::string defaultLangRegion = "en_US";
|
||||
if (bFirstRun) {
|
||||
std::string langRegion = System_GetProperty(SYSPROP_LANGREGION);
|
||||
|
Loading…
Reference in New Issue
Block a user