Fix: mention our websites with https:// (instead of http://) (#8657)

It is 2021. Nobody should advertise http anymore. Not even us.
This commit is contained in:
Patric Stout
2021-02-08 19:07:34 +01:00
committed by GitHub
parent da4c404f3d
commit ac2b5e57cf
2 changed files with 2 additions and 2 deletions

View File

@@ -510,7 +510,7 @@ struct AboutWindow : public Window {
void SetStringParameters(int widget) const override
{
if (widget == WID_A_WEBSITE) SetDParamStr(0, "Website: http://www.openttd.org");
if (widget == WID_A_WEBSITE) SetDParamStr(0, "Website: https://www.openttd.org");
if (widget == WID_A_COPYRIGHT) SetDParamStr(0, _openttd_revision_year);
}