summaryrefslogtreecommitdiff
path: root/apps/recorder/keyboard.c
diff options
context:
space:
mode:
authorMartin Scarratt <mmmm@rockbox.org>2006-07-23 15:12:34 +0000
committerMartin Scarratt <mmmm@rockbox.org>2006-07-23 15:12:34 +0000
commitd29c03484bd032cbcb3d509527cb90162d2c4eab (patch)
treec642fe58d7563ebab8f013421570f4a0ae1a5fb0 /apps/recorder/keyboard.c
parentffc0cab8167ab0ac5ceb4153cdc545045aed3bce (diff)
downloadrockbox-d29c03484bd032cbcb3d509527cb90162d2c4eab.tar.gz
rockbox-d29c03484bd032cbcb3d509527cb90162d2c4eab.zip
fix for targets using line edit in virtual keyboard (spotted by freqmod)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10294 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 bf78826a2a..91ed968cd7 100644
--- a/apps/recorder/keyboard.c
+++ b/apps/recorder/keyboard.c
@@ -823,12 +823,12 @@ int kbd_input(char* text, int buflen)
823 { 823 {
824 if (param[l].y < param[l].lines - 1) 824 if (param[l].y < param[l].lines - 1)
825 param[l].y++; 825 param[l].y++;
826#ifndef KBD_MODES
827 else 826 else
827#ifndef KBD_MODES
828 param[l].y=0;} 828 param[l].y=0;}
829#else 829#else
830 line_edit = true;
830 } 831 }
831 line_edit = true;
832 } 832 }
833 if (!line_edit) 833 if (!line_edit)
834#endif 834#endif