diff options
author | peter1138 <peter1138@openttd.org> | 2006-05-03 12:17:02 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2006-05-03 12:17:02 +0000 |
commit | eafbc3362794d792b46a21697745c9eaa4815c84 (patch) | |
tree | 1364994e3926846a91cd472aa2268653f26ea72c | |
parent | a364ec2397c234029b7b35dc904f5f9634893343 (diff) | |
download | openttd-eafbc3362794d792b46a21697745c9eaa4815c84.tar.xz |
(svn r4708) - NewGRF: fix selection of number of loaded and loading states.
-rw-r--r-- | newgrf_engine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newgrf_engine.c b/newgrf_engine.c index 5c386ccc9..4b958350f 100644 --- a/newgrf_engine.c +++ b/newgrf_engine.c @@ -653,7 +653,7 @@ static uint32 VehicleResolveReal(const ResolverObject *object, uint num_loaded, *in_motion = v->current_order.type != OT_LOADING; } - totalsets = in_motion ? num_loaded : num_loading; + totalsets = *in_motion ? num_loaded : num_loading; if (v->cargo_count == v->cargo_cap || totalsets == 1) { set = totalsets - 1; |