summaryrefslogtreecommitdiff
path: root/news.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2004-11-15 12:05:01 +0000
committertron <tron@openttd.org>2004-11-15 12:05:01 +0000
commita0b4161a32e3af1f3333aee0c75f64e1ee2f91e6 (patch)
tree399116bf3062a75634c332045edcc9ed2a1c19c1 /news.h
parent2f35fea0975fe5242d5383331aa2f16e9849135b (diff)
downloadopenttd-a0b4161a32e3af1f3333aee0c75f64e1ee2f91e6.tar.xz
(svn r626) Merge r438 to trunk:
Some whitespace and magic number cleanup (in news_gui)
Diffstat (limited to 'news.h')
-rw-r--r--news.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/news.h b/news.h
index 003033cab..076f1b569 100644
--- a/news.h
+++ b/news.h
@@ -19,9 +19,9 @@ struct NewsItem {
#define NEWS_FLAGS(mode,flag,type,cb) ((cb)<<24 | (type)<<16 | (flag)<<8 | (mode))
void AddNewsItem(StringID string, uint32 flags, uint data_a, uint data_b);
-void NewsLoop();
-void DrawNewsBorder(Window *w);
-void InitNewsItemStructs();
+void NewsLoop(void);
+void DrawNewsBorder(const Window *w);
+void InitNewsItemStructs(void);
VARDEF NewsItem _statusbar_news_item;