Changed: Fixed a wrong copy-paste

This commit is contained in:
kervala 2015-01-11 18:27:06 +01:00
parent b8b68c4ec1
commit 9dfc7944d7

View file

@ -689,7 +689,7 @@ void addSearchPaths(IProgressCallback &progress)
for (uint i = 0; i < ClientCfg.DataPath.size(); i++)
{
// don't prepend default directory if path is absolute
if (!ClientCfg.PreDataPath[i].empty() && ClientCfg.PreDataPath[i][0] != '/')
if (!ClientCfg.DataPath[i].empty() && ClientCfg.DataPath[i][0] != '/')
{
progress.progress ((float)i/(float)ClientCfg.DataPath.size());
progress.pushCropedValues ((float)i/(float)ClientCfg.DataPath.size(), (float)(i+1)/(float)ClientCfg.DataPath.size());