mirror of
https://github.com/opentx/opentx.git
synced 2025-07-24 08:45:24 +03:00
9x timer start edit fix
This commit is contained in:
parent
1809addbb3
commit
4b6bcc6a0e
1 changed files with 3 additions and 2 deletions
|
@ -285,8 +285,9 @@ void menuModelSetup(uint8_t event)
|
|||
break;
|
||||
case 2:
|
||||
qr.rem -= checkIncDecModel(event, qr.rem+2, 1, 62)-2;
|
||||
timer->start -= qr.rem ;
|
||||
if ((int16_t)timer->start < 0) timer->start=0; // TODO is it really needed?
|
||||
if (timer->start >= qr.rem) {
|
||||
timer->start -= qr.rem ;
|
||||
}
|
||||
if ((int32_t)timer->start > 3599) timer->start=3599; // 59:59
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue