summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/neo/keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/neo/keyboard.c b/apps/neo/keyboard.c
index 7433b4b6c7..d81d7629b3 100644
--- a/apps/neo/keyboard.c
+++ b/apps/neo/keyboard.c
@@ -94,7 +94,7 @@ int kbd_input(char* text, int buflen)
94 lcd_puts(0, 0, kbdbuffer); 94 lcd_puts(0, 0, kbdbuffer);
95 kbd_show_legend(screen); 95 kbd_show_legend(screen);
96 lcd_cursor(cursorpos, 0); 96 lcd_cursor(cursorpos, 0);
97 lcd_write(true, LCD_BLINKCUR); 97 lcd_write_command(LCD_BLINKCUR);
98 98
99 pstart = pcursor = kbdbuffer; 99 pstart = pcursor = kbdbuffer;
100 100
@@ -140,7 +140,7 @@ int kbd_input(char* text, int buflen)
140 case BUTTON_IR|NEO_IR_BUTTON_STOP: 140 case BUTTON_IR|NEO_IR_BUTTON_STOP:
141 141
142 /* Remove blinking cursor */ 142 /* Remove blinking cursor */
143 lcd_write(true,LCD_OFFCUR); 143 lcd_write_command(LCD_OFFCUR);
144 done = true; 144 done = true;
145 } 145 }
146 } 146 }