From 4a90fb6d85b8195bd23e1e1bc4d77d521eecfcc8 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Wed, 7 Dec 2005 00:02:30 +0000 Subject: Fixed player vkeyboard to properly work with unicode on target. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8181 a1c6a512-1295-4272-9138-f99709370657 --- apps/player/keyboard.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'apps') diff --git a/apps/player/keyboard.c b/apps/player/keyboard.c index a290e141e5..926c351e82 100644 --- a/apps/player/keyboard.c +++ b/apps/player/keyboard.c @@ -35,11 +35,11 @@ extern unsigned short *lcd_ascii; -static unsigned short* kbd_setupkeys(int page, int* len) +static unsigned char* kbd_setupkeys(int page, int* len) { - static unsigned short lines[128]; + static unsigned char lines[128]; - unsigned short ch; + unsigned ch; int i = 0; switch (page) @@ -101,9 +101,9 @@ int kbd_input(char* text, int buflen) int len, len_utf8, i, j; int editpos, curpos, leftpos; - unsigned short* line = kbd_setupkeys(page, &linelen); + unsigned char *line = kbd_setupkeys(page, &linelen); unsigned char temptext[36]; - unsigned short tmp; + unsigned char tmp; unsigned char *utf8; int button, lastbutton = 0; -- cgit