summaryrefslogtreecommitdiff
path: root/src/network/core/tcp_content.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-12-19 17:48:04 +0000
committerrubidium <rubidium@openttd.org>2011-12-19 17:48:04 +0000
commitdf16ebd7301a989c813c26ab2e21163d361ee236 (patch)
treec74b8a1f965a17c3ac054290ae8d918d88ad1e52 /src/network/core/tcp_content.h
parenteaadd215be7a4594bd37504935a821f8cf68c984 (diff)
downloadopenttd-df16ebd7301a989c813c26ab2e21163d361ee236.tar.xz
(svn r23595) -Codechange: add comma after last enum to get a more uniform coding style
Diffstat (limited to 'src/network/core/tcp_content.h')
-rw-r--r--src/network/core/tcp_content.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/network/core/tcp_content.h b/src/network/core/tcp_content.h
index 396202f23..263ce6ba6 100644
--- a/src/network/core/tcp_content.h
+++ b/src/network/core/tcp_content.h
@@ -44,12 +44,12 @@ enum PacketContentType {
PACKET_CONTENT_SERVER_INFO, ///< Reply of content server with information about content
PACKET_CONTENT_CLIENT_CONTENT, ///< Request a content file given an internal ID
PACKET_CONTENT_SERVER_CONTENT, ///< Reply with the content of the given ID
- PACKET_CONTENT_END ///< Must ALWAYS be on the end of this list!! (period)
+ PACKET_CONTENT_END, ///< Must ALWAYS be on the end of this list!! (period)
};
/** Unique identifier for the content. */
enum ContentID {
- INVALID_CONTENT_ID = UINT32_MAX ///< Sentinel for invalid content.
+ INVALID_CONTENT_ID = UINT32_MAX, ///< Sentinel for invalid content.
};
/** Container for all important information about a piece of content. */
@@ -61,7 +61,7 @@ struct ContentInfo {
AUTOSELECTED, ///< The content has been selected as dependency
ALREADY_HERE, ///< The content is already at the client side
DOES_NOT_EXIST, ///< The content does not exist in the content system
- INVALID ///< The content's invalid
+ INVALID, ///< The content's invalid
};
ContentType type; ///< Type of content