From e5fca21612b7f3be4d91d564f1c042fcd280937f Mon Sep 17 00:00:00 2001 From: Denis Kedrovskiy Date: Sat, 30 Mar 2024 23:02:20 +0500 Subject: [PATCH] Fixed speedo display --- source/utils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/utils.hpp b/source/utils.hpp index a8a46b7f..031f8fdc 100644 --- a/source/utils.hpp +++ b/source/utils.hpp @@ -858,7 +858,7 @@ std::pair dispCustData(const std::string& jsonPath, const std: if (j_increment) { // Add increment value from the JSON to the displayed value intValue += std::stoi(json_string_value(j_increment)); } - if (intValue > 1500) { + if (intValue > 10000) { intValue = intValue/1000; } if (j_prefix) {