summaryrefslogtreecommitdiff
path: root/game/vehicles
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2024-10-31 02:04:43 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2024-11-05 20:06:22 +0000
commit7624e261415424144f7803c1335d65a6ed6fda6b (patch)
tree4c8386ec9d393a87357208a233e90c0126bc6a69 /game/vehicles
parentExtract consts and fix acceleration/decelartions rates (diff)
downloadilt-7624e261415424144f7803c1335d65a6ed6fda6b.tar.bz2
ilt-7624e261415424144f7803c1335d65a6ed6fda6b.tar.xz
ilt-7624e261415424144f7803c1335d65a6ed6fda6b.zip
Extract const for link history length
Diffstat (limited to 'game/vehicles')
-rw-r--r--game/vehicles/linkHistory.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/game/vehicles/linkHistory.cpp b/game/vehicles/linkHistory.cpp
index e6bab36..45aa0a8 100644
--- a/game/vehicles/linkHistory.cpp
+++ b/game/vehicles/linkHistory.cpp
@@ -8,7 +8,8 @@ LinkHistory::add(const Link::WPtr & l, unsigned char d)
links.insert(links.begin(), {l, d});
const auto lp = l.lock();
totalLen += lp->length;
- while (totalLen >= 1000000.F && !links.empty()) {
+ constexpr auto HISTORY_KEEP_LENGTH = 1'000'000.F;
+ while (totalLen >= HISTORY_KEEP_LENGTH && !links.empty()) {
totalLen -= links.back().first.lock()->length;
links.pop_back();
}