Skip to content

Commit

Permalink
Fixed speedo display
Browse files Browse the repository at this point in the history
  • Loading branch information
sao05 authored and i3sey committed Mar 31, 2024
1 parent b28ca7c commit e5fca21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ std::pair<std::string, int> 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) {
Expand Down

0 comments on commit e5fca21

Please sign in to comment.