Fixed: Use absolute path of current directory instead of relative path (avoid to check more than once the same location)
--HG-- branch : develop
This commit is contained in:
parent
31e6bd1bb1
commit
0979b19e8e
1 changed files with 1 additions and 1 deletions
|
@ -659,7 +659,7 @@ static void addPaths(IProgressCallback &progress, const std::vector<std::string>
|
|||
std::vector<std::string> directoryPrefixes;
|
||||
|
||||
// current directory has priority everywhere
|
||||
directoryPrefixes.push_back("");
|
||||
directoryPrefixes.push_back(CPath::standardizePath(CPath::getCurrentPath()));
|
||||
|
||||
#if defined(NL_OS_WINDOWS)
|
||||
// check in same directory as executable
|
||||
|
|
Loading…
Reference in a new issue