Remove useless feature

ryzomclassic-develop
kaetemi 5 years ago committed by Jan Boon
parent b06b0fb08c
commit ba6378e07c

@ -416,7 +416,9 @@ CClientConfig::CClientConfig()
#endif
PatchUrl.clear();
#ifdef RYZOM_FORGE
PatchletUrl.clear();
#endif
PatchVersion.clear();
WebIgMainDomain = "https://classic.ryzom.dev";
@ -1079,9 +1081,11 @@ void CClientConfig::setValues()
READ_STRING_DEV(ReleaseNotePath)
#endif
/////////////////////////
// NEW PATCHLET SYSTEM //
#ifdef RYZOM_FORGE
/////////////////////////////
// GARBAGE PATCHLET SYSTEM //
READ_STRING_FV(PatchletUrl)
#endif
///////////
// WEBIG //

@ -304,8 +304,10 @@ struct CClientConfig
// NEW PATCHING SYSTEM //
bool PatchWanted;
std::string PatchUrl;
std::string PatchletUrl;
std::string PatchVersion;
#ifdef RYZOM_FORGE
std::string PatchletUrl;
#endif
std::string RingReleaseNotePath;
std::string ReleaseNotePath;

@ -784,6 +784,7 @@ void CInterfaceManager::initOutGame()
}
//NLMEMORY::CheckHeap (true);
#ifdef RYZOM_FORGE
// Initialize the web browser
{
CGroupHTML *pGH = dynamic_cast<CGroupHTML*>( CWidgetManager::getInstance()->getElementFromId(GROUP_BROWSER));
@ -794,6 +795,7 @@ void CInterfaceManager::initOutGame()
pGH->browse(ClientCfg.PatchletUrl.c_str());
}
}
#endif
}
// ------------------------------------------------------------------------------------------------

Loading…
Cancel
Save