summaryrefslogtreecommitdiff
path: root/src/station_base.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2012-11-12 21:59:02 +0000
committerfrosch <frosch@openttd.org>2012-11-12 21:59:02 +0000
commit883f9bec9b762f3615524726cd8e17c2df19dbe1 (patch)
treefc7994745489e7d7148bb0151963faa12e29a745 /src/station_base.h
parentce87b8fc63c424fcb403130b2a5cf0dcf7c2980d (diff)
downloadopenttd-883f9bec9b762f3615524726cd8e17c2df19dbe1.tar.xz
(svn r24718) -Codechange: Rename GoodsEntry::days_since_pickup to GoodsEntry::time_since_pickup.
Diffstat (limited to 'src/station_base.h')
-rw-r--r--src/station_base.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/station_base.h b/src/station_base.h
index 5f179eb32..07d1d2294 100644
--- a/src/station_base.h
+++ b/src/station_base.h
@@ -71,7 +71,7 @@ struct GoodsEntry {
GoodsEntry() :
acceptance_pickup(0),
- days_since_pickup(255),
+ time_since_pickup(255),
rating(INITIAL_STATION_RATING),
last_speed(0),
last_age(255)
@@ -84,7 +84,7 @@ struct GoodsEntry {
* The unit used is STATION_RATING_TICKS.
* This does not imply there was any cargo to load.
*/
- byte days_since_pickup;
+ byte time_since_pickup;
byte rating; ///< %Station rating for this cargo.