mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-05-02 14:56:19 -04:00
GUI glitch in ADSB RX
This commit is contained in:
parent
03c9812487
commit
c9a813fbd6
3 changed files with 3 additions and 3 deletions
|
@ -72,7 +72,7 @@ void RecentEntriesTable<AircraftRecentEntries>::draw(
|
|||
to_string_dec_uint((unsigned int)entry.velo.speed,4) +
|
||||
to_string_dec_uint((unsigned int)(entry.amp>>9),4) + " " +
|
||||
(entry.hits <= 999 ? to_string_dec_uint(entry.hits, 3) + " " : "1k+ ") +
|
||||
to_string_dec_uint(entry.age, 3);
|
||||
to_string_dec_uint(entry.age, 4);
|
||||
#endif
|
||||
|
||||
painter.draw_string(
|
||||
|
|
|
@ -375,7 +375,7 @@ private:
|
|||
{ "Spd", 3 },
|
||||
{ "Amp", 3 },
|
||||
{ "Hit", 3 },
|
||||
{ "Age", 3 }
|
||||
{ "Age", 4 }
|
||||
#endif
|
||||
} };
|
||||
AircraftRecentEntries recent { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue