(svn r13826) -Codechange: use 'INVALID_DATE' instead of '0' as placeholder in tile description
--- a/src/misc_gui.cpp Fri Jul 25 17:33:53 2008 +0000
+++ b/src/misc_gui.cpp Fri Jul 25 19:50:40 2008 +0000
@@ -116,7 +116,7 @@
TileDesc td;
AcceptedCargo ac;
- td.build_date = 0;
+ td.build_date = INVALID_DATE;
/* Most tiles have only one owner, but
* - drivethrough roadstops can be build on town owned roads (up to 2 owners) and
@@ -180,7 +180,7 @@
line_nr++;
/* Build date */
- if (td.build_date != 0) {
+ if (td.build_date != INVALID_DATE) {
SetDParam(0, td.build_date);
GetString(this->landinfo_data[line_nr], STR_BUILD_DATE, lastof(this->landinfo_data[line_nr]));
line_nr++;