mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fixed: use PatchUrl instead of PatchServer in ryzom_client_patcher
--HG-- branch : develop
This commit is contained in:
parent
f88fd7719c
commit
9bc4534660
1 changed files with 5 additions and 5 deletions
|
@ -202,10 +202,10 @@ int main(int argc, char *argv[])
|
||||||
// load client.cfg or client_default.cfg
|
// load client.cfg or client_default.cfg
|
||||||
ClientCfg.init(config);
|
ClientCfg.init(config);
|
||||||
|
|
||||||
// check if PatchServer is defined
|
// check if PatchUrl is defined
|
||||||
if (ClientCfg.PatchServer.empty())
|
if (ClientCfg.PatchUrl.empty())
|
||||||
{
|
{
|
||||||
printError("PatchServer not defined in " + config);
|
printError("PatchUrl not defined in " + config);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -273,9 +273,9 @@ int main(int argc, char *argv[])
|
||||||
// set the correct root path
|
// set the correct root path
|
||||||
pPM->setClientRootPath(rootPath);
|
pPM->setClientRootPath(rootPath);
|
||||||
|
|
||||||
// use PatchServer URL
|
// use PatchUrl
|
||||||
vector<string> patchURLs;
|
vector<string> patchURLs;
|
||||||
pPM->init(patchURLs, ClientCfg.PatchServer, ClientCfg.PatchVersion);
|
pPM->init(patchURLs, ClientCfg.PatchUrl, ClientCfg.PatchVersion);
|
||||||
pPM->startCheckThread(true /* include background patchs */);
|
pPM->startCheckThread(true /* include background patchs */);
|
||||||
|
|
||||||
ucstring state;
|
ucstring state;
|
||||||
|
|
Loading…
Reference in a new issue