summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorKjell Ericson <kjell@haxx.se>2003-01-29 11:49:13 +0000
committerKjell Ericson <kjell@haxx.se>2003-01-29 11:49:13 +0000
commitff4da18d1a42342917a62f6e0a904b2884c98ae1 (patch)
tree61b425d516f3ac78bce00a6286841c1cafdedb98 /apps
parent9d40f7ebc4270fec50211da80f19d7ba1da6b841 (diff)
downloadrockbox-ff4da18d1a42342917a62f6e0a904b2884c98ae1.tar.gz
rockbox-ff4da18d1a42342917a62f6e0a904b2884c98ae1.zip
Removed cursor before adding it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3183 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/player/keyboard.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/player/keyboard.c b/apps/player/keyboard.c
index 42c09098a0..5d45306f83 100644
--- a/apps/player/keyboard.c
+++ b/apps/player/keyboard.c
@@ -113,6 +113,7 @@ int kbd_input(char* text, int buflen)
temptext[p++]=text[i++];
}
temptext[p]=0;
+ lcd_remove_cursor();
lcd_puts(1, 0, temptext);
lcd_put_cursor(cursor_pos-left_pos+1, 0, 0x7f);
old_cursor_pos=cursor_pos;