1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-26 01:35:21 +03:00

Bug in channels order when displaying only one letter

This commit is contained in:
bsongis 2012-01-16 13:37:54 +00:00
parent 50816ba01b
commit ba941f02bf
2 changed files with 2 additions and 2 deletions

View file

@ -237,7 +237,7 @@ void menuProcSetup(uint8_t event)
uint8_t attr = sub==subN?INVERS:0;
lcd_puts_P(0, y,PSTR("Rx Channel Ord"));// RAET->AETR
for (uint8_t i=1; i<=4; i++)
putsChnLetter((16+i)*FW, y, i, attr);
putsChnLetter((16+i)*FW, y, CHANNEL_ORDER(i), attr);
if(attr) CHECK_INCDEC_GENVAR(event, g_eeGeneral.templateSetup, 0, 23);
if((y+=FH)>7*FH) return;
}subN++;