summaryrefslogtreecommitdiff
path: root/news_gui.c
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-08-15 14:52:17 +0000
committerrubidium <rubidium@openttd.org>2006-08-15 14:52:17 +0000
commit8aa76f306db00b81f14b53a736b6e30099258841 (patch)
tree4d695e9efdc4542d90feba482d6d00bd948be0d3 /news_gui.c
parentd447f025e9c44a347e9134a5ecda92fbbe14bb75 (diff)
downloadopenttd-8aa76f306db00b81f14b53a736b6e30099258841.tar.xz
(svn r5915) -Cleanup: some variables were named *_date while they were only holding years; rename these variables to match this.
Diffstat (limited to 'news_gui.c')
-rw-r--r--news_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/news_gui.c b/news_gui.c
index d3e4b83f4..389ca4b54 100644
--- a/news_gui.c
+++ b/news_gui.c
@@ -258,7 +258,7 @@ void AddNewsItem(StringID string, uint32 flags, uint data_a, uint data_b)
ni->flags = (byte)(flags >> 8) | NF_NOEXPIRE;
// show this news message in color?
- if (_date >= ConvertIntDate(_patches.colored_news_date))
+ if (_date >= ConvertIntDate(_patches.colored_news_year))
ni->flags |= NF_INCOLOR;
ni->type = (byte)(flags >> 16);