Changed: Use ClientCfg.getDefaultConfigLocation to get location of client root

This commit is contained in:
kervala 2016-02-20 19:07:34 +01:00
parent ba5a164ec8
commit 7e6114985e

View file

@ -125,10 +125,14 @@ CPatchManager::CPatchManager() : State("t_state"), DataScanState("t_data_scan_st
UpgradeBatchFilename = "upgd_nl.sh";
#endif
// use application directory by default
std::string rootPath = Args.getProgramPath();
std::string rootPath;
if (!CFile::fileExists(rootPath + "client_default.cfg"))
if (ClientCfg.getDefaultConfigLocation(rootPath))
{
// use same directory as client_default.cfg
rootPath = CFile::getPath(rootPath);
}
else
{
// use current directory
rootPath = CPath::getCurrentPath();