summaryrefslogtreecommitdiff
path: root/src/company_base.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-01-03 17:11:52 +0000
committersmatz <smatz@openttd.org>2009-01-03 17:11:52 +0000
commitafef22e3e7caeb41d94115bfd000b4cce68e430d (patch)
tree1b6c7083c14efc8630c4839005e7b1c3c4610160 /src/company_base.h
parent6512d717e168fd1a5253a7ebe31e772824131de7 (diff)
downloadopenttd-afef22e3e7caeb41d94115bfd000b4cce68e430d.tar.xz
(svn r14812) -Codechange: use INVALID_TILE instead of 0 to mark company without HQ
Diffstat (limited to 'src/company_base.h')
-rw-r--r--src/company_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/company_base.h b/src/company_base.h
index b92db880b..ee93dd91a 100644
--- a/src/company_base.h
+++ b/src/company_base.h
@@ -56,7 +56,7 @@ struct Company : PoolItem<Company, CompanyByte, &_Company_pool> {
uint32 cargo_types; ///< which cargo types were transported the last year
- TileIndex location_of_HQ;
+ TileIndex location_of_HQ; ///< northern tile of HQ ; INVALID_TILE when there is none
TileIndex last_build_coordinate;
OwnerByte share_owners[4];