(svn r5926) -Codechange: make _cur_year contain the full year, instead of the offset since 1920
-Codechange: store all year related variables that are _not_ stored in a savegame/transported over the network in the same format as _cur_year
This commit is contained in:
@@ -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_year))
|
||||
if (_cur_year >= _patches.colored_news_year)
|
||||
ni->flags |= NF_INCOLOR;
|
||||
|
||||
ni->type = (byte)(flags >> 16);
|
||||
|
||||
Reference in New Issue
Block a user