summaryrefslogtreecommitdiff
path: root/src/news_type.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-03-23 11:48:05 +0000
committersmatz <smatz@openttd.org>2009-03-23 11:48:05 +0000
commitc299bac5be4e5c1cd00f6218f7507a78479dcecc (patch)
tree3a2f4cbf8f42be535eaf63539c41f5958f7bc827 /src/news_type.h
parentc91f965f0831867e9b971c119da11aed6c37077e (diff)
downloadopenttd-c299bac5be4e5c1cd00f6218f7507a78479dcecc.tar.xz
(svn r15830) -Codechange: don't use fixed size of array in news_gui.cpp and news_func.h
Diffstat (limited to 'src/news_type.h')
-rw-r--r--src/news_type.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/news_type.h b/src/news_type.h
index 60c3b58f3..3697a66e9 100644
--- a/src/news_type.h
+++ b/src/news_type.h
@@ -95,9 +95,9 @@ enum NewsDisplay {
*/
struct NewsTypeData {
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)
+ const byte age; ///< Maximum age of news items (in days)
+ const SoundFx sound; ///< Sound
+ NewsDisplay display; ///< Display mode (off, summary, full)
};
struct NewsItem {