summaryrefslogtreecommitdiff
path: root/src/newgrf_engine.cpp
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2007-11-15 00:13:12 +0000
committerglx <glx@openttd.org>2007-11-15 00:13:12 +0000
commit9fcf6e7a43b51bc109749510118d36428ced0b67 (patch)
treef6fd15de0b2710a8555aa567964b330507cc7b71 /src/newgrf_engine.cpp
parenta46f502d5f1dc9106cc5e58b48da3338e80e3b10 (diff)
downloadopenttd-9fcf6e7a43b51bc109749510118d36428ced0b67.tar.xz
(svn r11431) -Codechange: [NewGRF] Add support for changing rail vehicle user-defined bit mask (prop 25) via callback 36
Diffstat (limited to 'src/newgrf_engine.cpp')
-rw-r--r--src/newgrf_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_engine.cpp b/src/newgrf_engine.cpp
index 2c0090da9..4adf8d82d 100644
--- a/src/newgrf_engine.cpp
+++ b/src/newgrf_engine.cpp
@@ -548,7 +548,7 @@ static uint32 VehicleGetVariable(const ResolverObject *object, byte variable, by
cargo_classes |= GetCargo(u->cargo_type)->classes;
common_cargos[u->cargo_type]++;
- if (v->type == VEH_TRAIN) user_def_data |= RailVehInfo(u->engine_type)->user_def_data;
+ if (v->type == VEH_TRAIN) user_def_data |= u->u.rail.user_def_data;
common_subtypes[u->cargo_subtype]++;
}