summaryrefslogtreecommitdiff
path: root/src/newgrf_config.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/newgrf_config.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/newgrf_config.h')
-rw-r--r--src/newgrf_config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/newgrf_config.h b/src/newgrf_config.h
index 5bee279a5..2f54a9958 100644
--- a/src/newgrf_config.h
+++ b/src/newgrf_config.h
@@ -36,7 +36,7 @@ enum GRFStatus {
GCS_DISABLED, ///< GRF file is disabled
GCS_NOT_FOUND, ///< GRF file was not found in the local cache
GCS_INITIALISED, ///< GRF file has been initialised
- GCS_ACTIVATED ///< GRF file has been activated
+ GCS_ACTIVATED, ///< GRF file has been activated
};
/** Encountered GRF bugs */
@@ -51,7 +51,7 @@ enum GRFBugs {
enum GRFListCompatibility {
GLC_ALL_GOOD, ///< All GRF needed by game are present
GLC_COMPATIBLE, ///< Compatible (eg. the same ID, but different chacksum) GRF found in at least one case
- GLC_NOT_FOUND ///< At least one GRF couldn't be found (higher priority than GLC_COMPATIBLE)
+ GLC_NOT_FOUND, ///< At least one GRF couldn't be found (higher priority than GLC_COMPATIBLE)
};
/** Information that can/has to be stored about a GRF's palette. */
@@ -154,7 +154,7 @@ enum TextfileType {
TFT_CHANGELOG, ///< NewGRF changelog
TFT_LICENSE, ///< NewGRF license
- TFT_END
+ TFT_END,
};
DECLARE_POSTFIX_INCREMENT(TextfileType)