summaryrefslogtreecommitdiff
path: root/src/signs_base.h
diff options
context:
space:
mode:
authorCharles Pigott <charlespigott@googlemail.com>2019-04-22 09:10:04 +0100
committerPeterN <peter@fuzzle.org>2019-04-29 17:40:22 +0100
commit5b34c8019f135afd9f20d043a489ab96f286038a (patch)
tree84b38701d78f2348ad1e54c5cb379fc15bdcfe67 /src/signs_base.h
parentfcf06ba4c43bb9b7ac0b8541377a5240b3e01126 (diff)
downloadopenttd-5b34c8019f135afd9f20d043a489ab96f286038a.tar.xz
Codechange: Remove Company/OwnerByte types
Diffstat (limited to 'src/signs_base.h')
-rw-r--r--src/signs_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/signs_base.h b/src/signs_base.h
index 3e7b4c465..a4ee0718b 100644
--- a/src/signs_base.h
+++ b/src/signs_base.h
@@ -26,7 +26,7 @@ struct Sign : SignPool::PoolItem<&_sign_pool> {
int32 x;
int32 y;
int32 z;
- OwnerByte owner; // placed by this company. Anyone can delete them though. OWNER_NONE for gray signs from old games.
+ Owner owner; // placed by this company. Anyone can delete them though. OWNER_NONE for gray signs from old games.
Sign(Owner owner = INVALID_OWNER);
~Sign();