summaryrefslogtreecommitdiff
path: root/src/company_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-02-08 12:25:13 +0000
committerrubidium <rubidium@openttd.org>2009-02-08 12:25:13 +0000
commit377ce6c5bf1bc98087a83cd906dd14223668acef (patch)
tree5b7c7c6ed12ff58167007d93a309a4a340ebdf6b /src/company_cmd.cpp
parent27105127f6f9161e42f9e329e2db8ea417558c9f (diff)
downloadopenttd-377ce6c5bf1bc98087a83cd906dd14223668acef.tar.xz
(svn r15410) -Cleanup: get rid of most of the references to the 'patches' except where it's used for backward compatability.
Diffstat (limited to 'src/company_cmd.cpp')
-rw-r--r--src/company_cmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp
index 6ae724679..ec20b45ce 100644
--- a/src/company_cmd.cpp
+++ b/src/company_cmd.cpp
@@ -63,7 +63,7 @@ Company::~Company()
}
/**
- * Sets the local company and updates the patch settings that are set on a
+ * Sets the local company and updates the settings that are set on a
* per-company basis to reflect the core's state in the GUI.
* @param new_company the new company
* @pre IsValidCompanyID(new_company) || new_company == COMPANY_SPECTATOR || new_company == OWNER_NONE
@@ -75,7 +75,7 @@ void SetLocalCompany(CompanyID new_company)
_local_company = new_company;
- /* Do not update the patches if we are in the intro GUI */
+ /* Do not update the settings if we are in the intro GUI */
if (IsValidCompanyID(new_company) && _game_mode != GM_MENU) {
const Company *c = GetCompany(new_company);
_settings_client.gui.autorenew = c->engine_renew;