diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-04-21 09:39:29 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-04-21 09:39:29 +0000 |
| commit | 38e8a117aa6b5173f43a6ef8c2841b89f41a097d (patch) | |
| tree | cf4b84e83a5ab59fd67f2b7f9530afc1f7d2da99 /apps | |
| parent | 75b575a75014f886caef57a8faf6582252bfb9ed (diff) | |
| download | rockbox-38e8a117aa6b5173f43a6ef8c2841b89f41a097d.zip rockbox-38e8a117aa6b5173f43a6ef8c2841b89f41a097d.tar.gz rockbox-38e8a117aa6b5173f43a6ef8c2841b89f41a097d.tar.bz2 rockbox-38e8a117aa6b5173f43a6ef8c2841b89f41a097d.tar.xz | |
Unified usage of lcd transfer code
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4536 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/neo/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/neo/keyboard.c b/apps/neo/keyboard.c index 7433b4b..d81d762 100644 --- a/apps/neo/keyboard.c +++ b/apps/neo/keyboard.c @@ -94,7 +94,7 @@ int kbd_input(char* text, int buflen) lcd_puts(0, 0, kbdbuffer); kbd_show_legend(screen); lcd_cursor(cursorpos, 0); - lcd_write(true, LCD_BLINKCUR); + lcd_write_command(LCD_BLINKCUR); pstart = pcursor = kbdbuffer; @@ -140,7 +140,7 @@ int kbd_input(char* text, int buflen) case BUTTON_IR|NEO_IR_BUTTON_STOP: /* Remove blinking cursor */ - lcd_write(true,LCD_OFFCUR); + lcd_write_command(LCD_OFFCUR); done = true; } } |