1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-17 01:12:39 +01:00

Codefix: typos in comments and strings

This commit is contained in:
Rubidium
2025-08-31 09:28:04 +02:00
committed by rubidium42
parent 4fb749886a
commit 7c0f69a8fe
78 changed files with 135 additions and 135 deletions

View File

@@ -1428,7 +1428,7 @@ private:
}
/**
* Crete new company button is clicked.
* Create new company button is clicked.
* @param w The instance of this window.
* @param pt The point where this button was clicked.
*/
@@ -1621,7 +1621,7 @@ public:
{
this->RebuildList();
/* Currently server information is not sync'd to clients, so we cannot show it on clients. */
/* Currently server information is not synced to clients, so we cannot show it on clients. */
this->GetWidget<NWidgetStacked>(WID_CL_SERVER_SELECTOR)->SetDisplayedPlane(_network_server ? 0 : SZSP_HORIZONTAL);
this->SetWidgetDisabledState(WID_CL_SERVER_NAME_EDIT, !_network_server);
}
@@ -2065,7 +2065,7 @@ struct NetworkJoinStatusWindow : Window {
}
[[fallthrough]];
default: // Waiting is 15%, so the resting receivement of map is maximum 70%
default: // Waiting is 15%, so the remaining downloading of the map is maximum 70%
progress = 15 + _network_join_bytes * (100 - 15) / _network_join_bytes_total;
break;
}