mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-17 13:01:42 +00:00
Changed: Convert unpackTo directories to absolute directories
This commit is contained in:
parent
6d41451d64
commit
2f7992e43c
1 changed files with 3 additions and 2 deletions
|
@ -1121,9 +1121,9 @@ void CPatchManager::readDescFile(sint32 nVersion)
|
||||||
|
|
||||||
std::string unpackTo = category.getUnpackTo();
|
std::string unpackTo = category.getUnpackTo();
|
||||||
|
|
||||||
if (unpackTo.substr(0, 2) == "./")
|
if (unpackTo.substr(0, 1) == ".")
|
||||||
{
|
{
|
||||||
unpackTo = ClientRootPath + unpackTo.substr(2);
|
unpackTo = CPath::makePathAbsolute(unpackTo, ClientRootPath, true);
|
||||||
category.setUnpackTo(unpackTo);
|
category.setUnpackTo(unpackTo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2402,6 +2402,7 @@ void CPatchThread::run()
|
||||||
// Set a more explicit error message
|
// Set a more explicit error message
|
||||||
pPM->setErrorMessage(sTranslate);
|
pPM->setErrorMessage(sTranslate);
|
||||||
}
|
}
|
||||||
|
|
||||||
PatchOk = !bErr;
|
PatchOk = !bErr;
|
||||||
Ended = true;
|
Ended = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue