diff options
author | frosch <frosch@openttd.org> | 2013-12-25 11:37:10 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2013-12-25 11:37:10 +0000 |
commit | 3bdb4982d708543fa6e6fda9a220c4bbb849fa89 (patch) | |
tree | 4be17b791d26dac2814b87337ee721a9e0b73013 | |
parent | 40bf635a6d273b37fc578db4764676213731a959 (diff) | |
download | openttd-3bdb4982d708543fa6e6fda9a220c4bbb849fa89.tar.xz |
(svn r26180) -Fix: Visual effects did not work for articulated RV parts.
-rw-r--r-- | src/roadveh_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/roadveh_cmd.cpp b/src/roadveh_cmd.cpp index c70cd4f4e..ae15a88a5 100644 --- a/src/roadveh_cmd.cpp +++ b/src/roadveh_cmd.cpp @@ -241,7 +241,7 @@ void RoadVehUpdateCache(RoadVehicle *v, bool same_length) v->gcache.cached_total_length += u->gcache.cached_veh_length; /* Update visual effect */ - v->UpdateVisualEffect(); + u->UpdateVisualEffect(); /* Update cargo aging period. */ u->vcache.cached_cargo_age_period = GetVehicleProperty(u, PROP_ROADVEH_CARGO_AGE_PERIOD, EngInfo(u->engine_type)->cargo_age_period); |