summaryrefslogtreecommitdiff
path: root/src/industrytype.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2010-03-23 22:25:43 +0000
committersmatz <smatz@openttd.org>2010-03-23 22:25:43 +0000
commit53aaabe6e9aebdca71608e2996a9ecbff8b73713 (patch)
tree5e4cc5631e59a15aed9f63c3daa81b6d5927b91a /src/industrytype.h
parentf45e579923773e05dfc5a35915eee81f6da50914 (diff)
downloadopenttd-53aaabe6e9aebdca71608e2996a9ecbff8b73713.tar.xz
(svn r19507) -Codechange: remove semicolon after DECLARE_POSTFIX_INCREMENT and DECLARE_ENUM_AS_BIT_SET
Diffstat (limited to 'src/industrytype.h')
-rw-r--r--src/industrytype.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/industrytype.h b/src/industrytype.h
index f45483634..b4d653c53 100644
--- a/src/industrytype.h
+++ b/src/industrytype.h
@@ -81,14 +81,14 @@ enum IndustryBehaviour {
INDUSTRYBEH_NOBUILT_MAPCREATION = 1 << 16, ///< Do not force one instance of this type to appear on map generation
INDUSTRYBEH_CANCLOSE_LASTINSTANCE = 1 << 17, ///< Allow closing down the last instance of this type
};
-DECLARE_ENUM_AS_BIT_SET(IndustryBehaviour);
+DECLARE_ENUM_AS_BIT_SET(IndustryBehaviour)
/** Flags for miscellaneous industry tile specialities */
enum IndustryTileSpecialFlags {
INDTILE_SPECIAL_NONE = 0,
INDTILE_SPECIAL_NEXTFRAME_RANDOMBITS = 1 << 0, ///< Callback 0x26 needs random bits
};
-DECLARE_ENUM_AS_BIT_SET(IndustryTileSpecialFlags);
+DECLARE_ENUM_AS_BIT_SET(IndustryTileSpecialFlags)
struct IndustryTileTable {
TileIndexDiffC ti;