summaryrefslogtreecommitdiff
path: root/apps/recorder/keyboard.c
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2005-12-21 12:46:50 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2005-12-21 12:46:50 +0000
commit783428d2eeb78af553caadd823d2355c3d357a97 (patch)
tree8bc07fcf6003709842b62ffcd33828a7566dfe0b /apps/recorder/keyboard.c
parentf286072941e85b70d9c374acb8c9ecfee65f06db (diff)
Fixed the misplaced w and v in morse input and removed scandinavian
characters for now to support utf8. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8273 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/keyboard.c')
-rw-r--r--apps/recorder/keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c
index d4cc8fbfd0..5f56274026 100644
--- a/apps/recorder/keyboard.c
+++ b/apps/recorder/keyboard.c
@@ -151,11 +151,11 @@ static const char * const kbdpages[KEYBOARD_PAGES][KEYBOARD_LINES] = {
#ifdef HAVE_MORSE_INPUT
/* FIXME: We should put this to a configuration file. */
static const char *morse_alphabets =
- "abcdefghijklmnopqrstuwvxyzåäö1234567890,.?-@ ";
+ "abcdefghijklmnopqrstuvwxyz1234567890,.?-@ ";
static const unsigned char morse_codes[] = {
0x05,0x18,0x1a,0x0c,0x02,0x12,0x0e,0x10,0x04,0x17,0x0d,0x14,0x07,
0x06,0x0f,0x16,0x1d,0x0a,0x08,0x03,0x09,0x11,0x0b,0x19,0x1b,0x1c,
- 0x2d,0x15,0x1e,0x2f,0x27,0x23,0x21,0x20,0x30,0x38,0x3c,0x3e,0x3f,
+ 0x2f,0x27,0x23,0x21,0x20,0x30,0x38,0x3c,0x3e,0x3f,
0x73,0x55,0x4c,0x61,0x5a,0x80 };
static bool morse_mode = false;