Quote:
|
Originally Posted by Mark McLeod
Code:
if (rightTopSpeed < 254) // Limit how high it can go
|
That should probably be
Code:
if (rightTopSpeed < 250) // Limit how high it can go
otherwise your top speed could go as high as 257 -- which, i suspect, would cause unexpected results.
