mirror of
https://github.com/opentx/opentx.git
synced 2025-07-24 16:55:20 +03:00
Fix timer display
This commit is contained in:
parent
fae55a21c6
commit
76f0b306aa
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ void drawRtcTime(coord_t x, coord_t y, LcdFlags flags)
|
|||
void drawTimer(coord_t x, coord_t y, putstime_t tme, LcdFlags flags)
|
||||
{
|
||||
char str[LEN_TIMER_STRING];
|
||||
getTimerString(str, tme, flags & TIMEHOUR);
|
||||
getTimerString(str, tme, (flags & TIMEHOUR) != 0);
|
||||
lcdDrawText(x, y, str, flags);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue