in key_test(), show long-key presses as "L" and not "1"

This commit is contained in:
Pavel Semerad
2011-05-24 00:25:40 +02:00
parent e31ba05ab3
commit 8685121f21

View File

@@ -227,7 +227,7 @@ void menu_key_test(void) {
if (btn(bit)) {
key_beep();
lcd_chars(key_ids[i]);
if (btnl(bit)) lcd_7seg(1);
if (btnl(bit)) lcd_7seg(L7_L);
else lcd_set(L7SEG, LB_EMPTY);
lcd_update();
break;