Fix off-by-one error.
This commit is contained in:
@ -133,13 +133,13 @@ bool EncoderButton::Update(Joystick* js) {
|
||||
ticks--;
|
||||
}
|
||||
|
||||
if (ticks > tick_threshold) {
|
||||
if (ticks >= tick_threshold) {
|
||||
js->PressButton(vbutton);
|
||||
changed = true;
|
||||
release_time1 = millis() + 250;
|
||||
ticks = 0;
|
||||
}
|
||||
else if (ticks < tick_threshold * -1) {
|
||||
else if (ticks <= tick_threshold * -1) {
|
||||
js->PressButton(vbutton2);
|
||||
changed = true;
|
||||
release_time2 = millis() + 250;
|
||||
|
Reference in New Issue
Block a user