mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-02-11 14:44:07 +00:00
Fix a leftover hardcoded string, thx KS-10 for pointing
This commit is contained in:
parent
1fe6e665e3
commit
7ac095e005
1 changed files with 2 additions and 2 deletions
|
@ -157,7 +157,7 @@ void ModDL::GetModlist(const std::string& url, bool allowChaining, bool first)
|
||||||
if(first)
|
if(first)
|
||||||
knownServers.clear();
|
knownServers.clear();
|
||||||
|
|
||||||
// Prevent recursion, self-linling, or cycle linking.
|
// Prevent recursion, self-linking, or cycle linking.
|
||||||
// In theory, this allows setting up a server network
|
// In theory, this allows setting up a server network
|
||||||
// where each server links to any servers it knows,
|
// where each server links to any servers it knows,
|
||||||
// without screwing up, but this isn't going to happen anyways.
|
// without screwing up, but this isn't going to happen anyways.
|
||||||
|
@ -203,7 +203,7 @@ void ModDL::GetModlist(const std::string& url, bool allowChaining, bool first)
|
||||||
{
|
{
|
||||||
scr->globeIcon->quad->color.interpolateTo(Vector(1,1,1), 0.3f);
|
scr->globeIcon->quad->color.interpolateTo(Vector(1,1,1), 0.3f);
|
||||||
scr->globeIcon->alpha.interpolateTo(0.5f, 0.2f, -1, true, true);
|
scr->globeIcon->alpha.interpolateTo(0.5f, 0.2f, -1, true, true);
|
||||||
scr->dlText.setText("Retrieving online mod list...");
|
scr->dlText.setText(dsq->continuity.stringBank.get(2033));
|
||||||
scr->dlText.alpha.stopPath();
|
scr->dlText.alpha.stopPath();
|
||||||
scr->dlText.alpha.interpolateTo(1, 0.1f);
|
scr->dlText.alpha.interpolateTo(1, 0.1f);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue