mirror of https://github.com/procxx/kepka.git
Use current folder in Debug configuration for UWP.
This commit is contained in:
parent
a627ed0929
commit
2ab3cda743
|
@ -332,7 +332,11 @@ namespace Logs {
|
||||||
cForceWorkingDir(psAppDataPath());
|
cForceWorkingDir(psAppDataPath());
|
||||||
workingDirChosen = true;
|
workingDirChosen = true;
|
||||||
#elif defined OS_WIN_STORE
|
#elif defined OS_WIN_STORE
|
||||||
|
#ifdef _DEBUG
|
||||||
|
cForceWorkingDir(cExeDir());
|
||||||
|
#else // _DEBUG
|
||||||
cForceWorkingDir(psAppDataPath());
|
cForceWorkingDir(psAppDataPath());
|
||||||
|
#endif // else for _DEBUG
|
||||||
#endif // OS_WIN_STORE
|
#endif // OS_WIN_STORE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue