summaryrefslogtreecommitdiff
path: root/src/town.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-12-23 21:03:43 +0000
committerrubidium <rubidium@openttd.org>2008-12-23 21:03:43 +0000
commite6ff168508515ba4bf130106f100654d65685fd2 (patch)
tree13bdd9c673e98449442640715abe78de2b568a5e /src/town.h
parent2b5362de131afa3cca4d4139096f1b92d268bd4d (diff)
downloadopenttd-e6ff168508515ba4bf130106f100654d65685fd2.tar.xz
(svn r14732) -Codechange: replace some magic number with less magic constants and use the proper type for a few variables.
Diffstat (limited to 'src/town.h')
-rw-r--r--src/town.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town.h b/src/town.h
index ad63594df..f7f584b86 100644
--- a/src/town.h
+++ b/src/town.h
@@ -122,7 +122,7 @@ struct Town : PoolItem<Town, TownID, &_Town_pool> {
uint16 noise_reached;
/* Which companies have a statue? */
- byte statues;
+ CompanyMask statues;
/* Company ratings as well as a mask that determines which companies have a rating. */
CompanyMask have_ratings;