summaryrefslogtreecommitdiff
path: root/src/town_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-03-15 00:32:18 +0000
committerrubidium <rubidium@openttd.org>2009-03-15 00:32:18 +0000
commitb25a4f8231f3ded44038ea454a3d4c6a2dc9217d (patch)
tree776122508c686680b9c97f37ba3cb92ef905d67f /src/town_type.h
parentd72273d1f3b55df0e301408d630f24ef92ea8479 (diff)
downloadopenttd-b25a4f8231f3ded44038ea454a3d4c6a2dc9217d.tar.xz
(svn r15718) -Cleanup: apply some comment coding style on the rest of the sources too
Diffstat (limited to 'src/town_type.h')
-rw-r--r--src/town_type.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/town_type.h b/src/town_type.h
index 8da1a198a..179254b73 100644
--- a/src/town_type.h
+++ b/src/town_type.h
@@ -78,10 +78,10 @@ enum TownLayout {
NUM_TLS, ///< Number of town layouts
};
-/* It needs to be 8bits, because we save and load it as such */
-/** Define basic enum properties */
+/** It needs to be 8bits, because we save and load it as such
+ * Define basic enum properties */
template <> struct EnumPropsT<TownLayout> : MakeEnumPropsT<TownLayout, byte, TL_BEGIN, NUM_TLS, NUM_TLS> {};
-typedef TinyEnumT<TownLayout> TownLayoutByte; //typedefing-enumification of TownLayout
+typedef TinyEnumT<TownLayout> TownLayoutByte; // typedefing-enumification of TownLayout
enum {
MAX_LENGTH_TOWN_NAME_BYTES = 31, ///< The maximum length of a town name in bytes including '\0'