summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newgrf_engine.c2
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;