Fix missing const caught by clang-tidy.

This commit is contained in:
Stephen Anthony 2023-01-28 19:22:31 -03:30
parent bc0dce8487
commit b71573f1f6
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ void Driving::updateControllerAxes()
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void Driving::updateMouseAxes() void Driving::updateMouseAxes()
{ {
Int32 oldCounter = myCounter; const Int32 oldCounter = myCounter;
static constexpr int MJ_Threshold = 2; static constexpr int MJ_Threshold = 2;
// Mouse motion and button events // Mouse motion and button events