summaryrefslogtreecommitdiff
path: root/src/industry_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-05-13 09:44:44 +0000
committerrubidium <rubidium@openttd.org>2010-05-13 09:44:44 +0000
commit398418b8fa23ab59f5fc027a7dd6aeba9da4d7bb (patch)
tree54de30f4702263ee1489af162d6da840e35c0a87 /src/industry_type.h
parent793b0f0736ac543fb1f6a7e9a4bfd678891e7374 (diff)
downloadopenttd-398418b8fa23ab59f5fc027a7dd6aeba9da4d7bb.tar.xz
(svn r19812) -Codechange: give some unnamed enums a name or, in case they consisted of unrelated values use static const (u)int
Diffstat (limited to 'src/industry_type.h')
-rw-r--r--src/industry_type.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/industry_type.h b/src/industry_type.h
index bdf241715..34650d785 100644
--- a/src/industry_type.h
+++ b/src/industry_type.h
@@ -22,15 +22,15 @@ struct IndustryTileSpec;
static const IndustryID INVALID_INDUSTRY = 0xFFFF;
-enum {
- NEW_INDUSTRYOFFSET = 37, ///< original number of industries
- NUM_INDUSTRYTYPES = 64, ///< total number of industries, new and old
- INDUSTRYTILE_NOANIM = 0xFF, ///< flag to mark industry tiles as having no animation
- NEW_INDUSTRYTILEOFFSET = 175, ///< original number of tiles
- INVALID_INDUSTRYTYPE = NUM_INDUSTRYTYPES, ///< one above amount is considered invalid
- NUM_INDUSTRYTILES = 512, ///< total number of industry tiles, new and old
- INVALID_INDUSTRYTILE = NUM_INDUSTRYTILES, ///< one above amount is considered invalid
- INDUSTRY_COMPLETED = 3, ///< final stage of industry construction.
-};
+static const IndustryType NEW_INDUSTRYOFFSET = 37; ///< original number of industries
+static const IndustryType NUM_INDUSTRYTYPES = 64; ///< total number of industries, new and old
+static const IndustryType INVALID_INDUSTRYTYPE = NUM_INDUSTRYTYPES; ///< one above amount is considered invalid
+
+static const IndustryGfx INDUSTRYTILE_NOANIM = 0xFF; ///< flag to mark industry tiles as having no animation
+static const IndustryGfx NEW_INDUSTRYTILEOFFSET = 175; ///< original number of tiles
+static const IndustryGfx NUM_INDUSTRYTILES = 512; ///< total number of industry tiles, new and old
+static const IndustryGfx INVALID_INDUSTRYTILE = NUM_INDUSTRYTILES; ///< one above amount is considered invalid
+
+static const int INDUSTRY_COMPLETED = 3; ///< final stage of industry construction.
#endif /* INDUSTRY_TYPE_H */