Skip to content

Commit

Permalink
Fix tachimeter (for good this time, I think)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Apr 5, 2018
1 parent 978d1a6 commit e076e36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Car_Behaviour.cpp
Expand Up @@ -3661,7 +3661,7 @@ long CalculateDisplaySpeed (void)

speed = ((speed * 183) >> 15);

return(speed*240)>>7; // on screen full 240 speed is 128 lenght!
return(speed*200)>>7; // on screen full 240 speed is 128 lenght, but first 40 are not displayed!
}

/* ======================================================================================= */
Expand Down

0 comments on commit e076e36

Please sign in to comment.