summaryrefslogtreecommitdiff
path: root/src/vehicle.cpp
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2020-04-06 16:39:58 +0200
committerCharles Pigott <charlespigott@googlemail.com>2020-04-06 16:21:30 +0100
commitb50d77b831c60f9f162a6f1d2bc9ca19e702784e (patch)
tree71fed8bf2ae63ae65d6c4faa2bf2cab39154aa9f /src/vehicle.cpp
parent7fe291667fbe75f01b03980fa3654b1bf387117f (diff)
downloadopenttd-b50d77b831c60f9f162a6f1d2bc9ca19e702784e.tar.xz
Fix #8064: Incorrect display of refit capacity
Diffstat (limited to 'src/vehicle.cpp')
-rw-r--r--src/vehicle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle.cpp b/src/vehicle.cpp
index 2c57d970d..ae5af64a1 100644
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -82,7 +82,7 @@ static const uint GEN_HASHX_MASK = (1 << GEN_HASHX_BITS) - 1;
static const uint GEN_HASHY_MASK = ((1 << GEN_HASHY_BITS) - 1) << GEN_HASHX_BITS;
VehicleID _new_vehicle_id;
-uint16 _returned_refit_capacity; ///< Stores the capacity after a refit operation.
+uint _returned_refit_capacity; ///< Stores the capacity after a refit operation.
uint16 _returned_mail_refit_capacity; ///< Stores the mail capacity after a refit operation (Aircraft only).