(svn r13826) -Codechange: use 'INVALID_DATE' instead of '0' as placeholder in tile description
authorsmatz
Fri, 25 Jul 2008 19:50:40 +0000
changeset 9713 a1a2cbdb1090
parent 9712 f86db5d17c58
child 9714 5d785e184f2d
(svn r13826) -Codechange: use 'INVALID_DATE' instead of '0' as placeholder in tile description
src/misc_gui.cpp
--- 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++;