summaryrefslogtreecommitdiff
path: root/src/roadveh.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2009-10-03 14:46:48 +0000
committerfrosch <frosch@openttd.org>2009-10-03 14:46:48 +0000
commit12a814f487883b291c17bba69a5cd41ebf862708 (patch)
tree66839262ba2a509a285ffbf30c4888307fd1b937 /src/roadveh.h
parent539f31f76c73c5c2e10a3f47664184d867416be8 (diff)
downloadopenttd-12a814f487883b291c17bba69a5cd41ebf862708.tar.xz
(svn r17684) -Fix: tcache.first_engine and rcache.first_engine need to be set before first callback/sprite-resolving. For RV fronts it was missing at all, causing livery selection to fail.
Diffstat (limited to 'src/roadveh.h')
-rw-r--r--src/roadveh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/roadveh.h b/src/roadveh.h
index 5edd325df..010c3e395 100644
--- a/src/roadveh.h
+++ b/src/roadveh.h
@@ -89,7 +89,7 @@ void RoadVehUpdateCache(RoadVehicle *v);
/** Cached oftenly queried (NewGRF) values */
struct RoadVehicleCache {
byte cached_veh_length;
- EngineID first_engine;
+ EngineID first_engine; ///< cached EngineID of the front vehicle. INVALID_VEHICLE for the front vehicle itself.
};
/**