diff options
author | rubidium <rubidium@openttd.org> | 2011-12-19 17:48:04 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-12-19 17:48:04 +0000 |
commit | df16ebd7301a989c813c26ab2e21163d361ee236 (patch) | |
tree | c74b8a1f965a17c3ac054290ae8d918d88ad1e52 /src/tilehighlight_type.h | |
parent | eaadd215be7a4594bd37504935a821f8cf68c984 (diff) | |
download | openttd-df16ebd7301a989c813c26ab2e21163d361ee236.tar.xz |
(svn r23595) -Codechange: add comma after last enum to get a more uniform coding style
Diffstat (limited to 'src/tilehighlight_type.h')
-rw-r--r-- | src/tilehighlight_type.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tilehighlight_type.h b/src/tilehighlight_type.h index afe38ace6..3d64248df 100644 --- a/src/tilehighlight_type.h +++ b/src/tilehighlight_type.h @@ -32,14 +32,14 @@ enum HighLightStyle { /* lower bits (used with HT_LINE and HT_RAIL): * (see ASCII art in table/autorail.h for a visual interpretation) */ - HT_DIR_X = 0, ///< X direction - HT_DIR_Y = 1, ///< Y direction - HT_DIR_HU = 2, ///< horizontal upper - HT_DIR_HL = 3, ///< horizontal lower - HT_DIR_VL = 4, ///< vertical left - HT_DIR_VR = 5, ///< vertical right - HT_DIR_END, ///< end marker - HT_DIR_MASK = 0x7 ///< masks the drag-direction + HT_DIR_X = 0, ///< X direction + HT_DIR_Y = 1, ///< Y direction + HT_DIR_HU = 2, ///< horizontal upper + HT_DIR_HL = 3, ///< horizontal lower + HT_DIR_VL = 4, ///< vertical left + HT_DIR_VR = 5, ///< vertical right + HT_DIR_END, ///< end marker + HT_DIR_MASK = 0x7, ///< masks the drag-direction }; DECLARE_ENUM_AS_BIT_SET(HighLightStyle) |