# HG changeset patch # User smatz # Date 1217015440 0 # Node ID c94f47f48e767121475024bf477b41a7010c070d # Parent f805e7f49eb4b08b1427ca7d538ca4bf23a300ad (svn r13826) -Codechange: use 'INVALID_DATE' instead of '0' as placeholder in tile description diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -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++;