Changed: Make absolute program path (useful if launched from current directory under Linux)

Changed: Set process name for logs

--HG--
branch : develop
This commit is contained in:
kervala 2016-01-23 18:50:17 +01:00
parent 222544f902
commit 7237736922

View file

@ -262,7 +262,10 @@ bool CCmdArgs::parse(const std::vector<std::string> &argv)
// first argument is always the program name
_ProgramName = CFile::getFilename(argv.front());
_ProgramPath = CPath::standardizePath(CFile::getPath(argv.front()));
_ProgramPath = CPath::makePathAbsolute(CPath::standardizePath(CFile::getPath(argv.front())), CPath::getCurrentPath(), true);
// set process name for logs
CLog::setProcessName(_ProgramName);
// arguments count
uint argc = argv.size();