From 7624e261415424144f7803c1335d65a6ed6fda6b Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 31 Oct 2024 02:04:43 +0000 Subject: Extract const for link history length --- game/vehicles/linkHistory.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'game/vehicles') 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(); } -- cgit v1.2.3