Use current folder in Debug configuration for UWP.

This commit is contained in:
John Preston 2017-02-10 13:10:33 +03:00
parent a627ed0929
commit 2ab3cda743

View File

@ -332,7 +332,11 @@ namespace Logs {
cForceWorkingDir(psAppDataPath());
workingDirChosen = true;
#elif defined OS_WIN_STORE
#ifdef _DEBUG
cForceWorkingDir(cExeDir());
#else // _DEBUG
cForceWorkingDir(psAppDataPath());
#endif // else for _DEBUG
#endif // OS_WIN_STORE
}