diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/newgrf_engine.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/newgrf_engine.cpp b/src/newgrf_engine.cpp index 2caf89de1..cd48b48da 100644 --- a/src/newgrf_engine.cpp +++ b/src/newgrf_engine.cpp @@ -841,6 +841,8 @@ static const SpriteGroup *VehicleResolveReal(const ResolverObject *object, const uint totalsets = in_motion ? group->num_loaded : group->num_loading; + if (totalsets == 0) return NULL; + uint set = (v->cargo.Count() * totalsets) / max((uint16)1, v->cargo_cap); set = min(set, totalsets - 1); |