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
commitdc54e608e36145deab60dea2cbe08517b28e54c0 (patch)
tree4d695e9efdc4542d90feba482d6d00bd948be0d3 /news_gui.c
parent672ee1bf3a553c25d446944e8a08131fdf7ceabe (diff)
downloadopenttd-dc54e608e36145deab60dea2cbe08517b28e54c0.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);