summaryrefslogtreecommitdiff
path: root/src/news_type.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-03-15 16:04:39 +0000
committersmatz <smatz@openttd.org>2009-03-15 16:04:39 +0000
commit8585aa71ed5bab510bc0a9104f36bc68734e0d73 (patch)
treea6bd8322261ba82369954b60f7c54e610dd6a990 /src/news_type.h
parentaf293142fede91cc31e98c7e05d9ecfef752b077 (diff)
downloadopenttd-8585aa71ed5bab510bc0a9104f36bc68734e0d73.tar.xz
(svn r15726) -Codechange: unify coding style for const pointers
Diffstat (limited to 'src/news_type.h')
-rw-r--r--src/news_type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/news_type.h b/src/news_type.h
index 00cdfc207..60c3b58f3 100644
--- a/src/news_type.h
+++ b/src/news_type.h
@@ -94,7 +94,7 @@ enum NewsDisplay {
* Per-NewsType data
*/
struct NewsTypeData {
- const char *const name; ///< Name
+ const char * const name; ///< Name
const byte age; ///< Maximum age of news items (in days)
const SoundFx sound; ///< Sound
NewsDisplay display; ///< Display mode (off, summary, full)