Page 1 of 1

Fix for speed averaging

Posted: Wed 4. Nov 2015, 20:13
by erikiiofph7
I realized that the averaging of the vehicle speed didn't work, data.speedIndex always had the same value. The fix is to in file MultidisplayController.cpp change line 752 from

Code: Select all

data.speedIndex = data.speedIndex++;
into

Code: Select all

data.speedIndex++;
And as a result I also had to change my SPEEDFACTOR into a fifth as I had tuned it in with the non-working averaging.

Re: Fix for speed averaging

Posted: Sun 8. Nov 2015, 09:49
by designer2k2
Thanks for the input, bofh will update it :-)