Changed: Remove PatchServer because unused

This commit is contained in:
kervala 2015-12-21 16:29:58 +01:00
parent ec1ee961e8
commit 30b6d87948
3 changed files with 0 additions and 5 deletions

View file

@ -41,7 +41,6 @@ Gamma_max = 1.0;
Application = { "ryzom_open", "./client_ryzom_r.exe", "./" }; Application = { "ryzom_open", "./client_ryzom_r.exe", "./" };
BackgroundDownloader = 0; BackgroundDownloader = 0;
PatchServer = "";
PatchWanted = 0; PatchWanted = 0;
SignUpURL = ""; SignUpURL = "";
StartupHost = "shard.ryzomcore.org:40916"; StartupHost = "shard.ryzomcore.org:40916";

View file

@ -420,7 +420,6 @@ CClientConfig::CClientConfig()
PatchUrl.clear(); PatchUrl.clear();
PatchletUrl.clear(); PatchletUrl.clear();
PatchVersion.clear(); PatchVersion.clear();
PatchServer.clear();
WebIgMainDomain = "shard.ryzomcore.org"; WebIgMainDomain = "shard.ryzomcore.org";
WebIgTrustedDomains.push_back(WebIgMainDomain); WebIgTrustedDomains.push_back(WebIgMainDomain);
@ -1050,13 +1049,11 @@ void CClientConfig::setValues()
///////////////////////// /////////////////////////
// NEW PATCHING SYSTEM // // NEW PATCHING SYSTEM //
READ_BOOL_FV(PatchWanted) READ_BOOL_FV(PatchWanted)
READ_STRING_FV(PatchServer)
READ_STRING_FV(PatchUrl) READ_STRING_FV(PatchUrl)
READ_STRING_FV(PatchVersion) READ_STRING_FV(PatchVersion)
READ_STRING_FV(RingReleaseNotePath) READ_STRING_FV(RingReleaseNotePath)
READ_STRING_FV(ReleaseNotePath) READ_STRING_FV(ReleaseNotePath)
READ_BOOL_DEV(PatchWanted) READ_BOOL_DEV(PatchWanted)
READ_STRING_DEV(PatchServer)
READ_STRING_DEV(PatchUrl) READ_STRING_DEV(PatchUrl)
READ_STRING_DEV(PatchVersion) READ_STRING_DEV(PatchVersion)
READ_STRING_DEV(RingReleaseNotePath) READ_STRING_DEV(RingReleaseNotePath)

View file

@ -296,7 +296,6 @@ struct CClientConfig
std::string PatchUrl; std::string PatchUrl;
std::string PatchletUrl; std::string PatchletUrl;
std::string PatchVersion; std::string PatchVersion;
std::string PatchServer;
std::string RingReleaseNotePath; std::string RingReleaseNotePath;
std::string ReleaseNotePath; std::string ReleaseNotePath;