diff options
author | Thomas Martitz <kugel@rockbox.org> | 2009-08-12 14:51:16 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2009-08-12 14:51:16 +0000 |
commit | 50d09bd84caad4a5ce19b1c5f0175ec82b49f5bb (patch) | |
tree | 0d479ce1ad0cc24075b42915c7c25dfff5a11b5d /apps/player/keyboard.c | |
parent | 3290f1f0257794da45bdd3c61998817f301edfb6 (diff) | |
download | rockbox-50d09bd84caad4a5ce19b1c5f0175ec82b49f5bb.tar.gz rockbox-50d09bd84caad4a5ce19b1c5f0175ec82b49f5bb.zip |
Fix yellows.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22271 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/player/keyboard.c')
-rw-r--r-- | apps/player/keyboard.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/player/keyboard.c b/apps/player/keyboard.c index 4f8a8b09e5..e657f36697 100644 --- a/apps/player/keyboard.c +++ b/apps/player/keyboard.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include "rbunicode.h" | 32 | #include "rbunicode.h" |
33 | #include "lang.h" | 33 | #include "lang.h" |
34 | #include "keyboard.h" | 34 | #include "keyboard.h" |
35 | #include "splash.h" | ||
35 | 36 | ||
36 | #define KBD_BUF_SIZE 64 | 37 | #define KBD_BUF_SIZE 64 |
37 | #define KEYBOARD_PAGES 3 | 38 | #define KEYBOARD_PAGES 3 |
@@ -112,7 +113,7 @@ int kbd_input(char* text, int buflen) | |||
112 | unsigned char *utf8; | 113 | unsigned char *utf8; |
113 | 114 | ||
114 | int button, lastbutton = 0; | 115 | int button, lastbutton = 0; |
115 | int ret; | 116 | int ret = 0; /* assume success */ |
116 | 117 | ||
117 | editpos = utf8length(text); | 118 | editpos = utf8length(text); |
118 | 119 | ||