summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2006-12-17 22:53:25 +0000
committerNils Wallménius <nils@rockbox.org>2006-12-17 22:53:25 +0000
commit5774709d15ca003384a2baaa95513a8302e27bf7 (patch)
tree88e85cddd11f6a682978a474da3329c17724a0d8
parentb757b50d0a7b63873c6958c0060f75ace73f72ff (diff)
downloadrockbox-5774709d15ca003384a2baaa95513a8302e27bf7.tar.gz
rockbox-5774709d15ca003384a2baaa95513a8302e27bf7.zip
One #if less :-D
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11791 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/recorder/keyboard.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c
index 7751dac906..7dcec7c8cc 100644
--- a/apps/recorder/keyboard.c
+++ b/apps/recorder/keyboard.c
@@ -258,8 +258,8 @@ int kbd_input(char* text, int buflen)
258 param[l].DEFAULT_LINES = 8; 258 param[l].DEFAULT_LINES = 8;
259 } 259 }
260 else 260 else
261 {
262#endif 261#endif
262 {
263 param[l].default_kbd = 263 param[l].default_kbd =
264 "ABCDEFG !?\" @#$%+'\n" 264 "ABCDEFG !?\" @#$%+'\n"
265 "HIJKLMN 789 &_()-`\n" 265 "HIJKLMN 789 &_()-`\n"
@@ -277,9 +277,7 @@ int kbd_input(char* text, int buflen)
277 "òóôõöø çðþýÿ ùúûü"; 277 "òóôõöø çðþýÿ ùúûü";
278 278
279 param[l].DEFAULT_LINES = 4; 279 param[l].DEFAULT_LINES = 4;
280#if LCD_WIDTH >= 160
281 } 280 }
282#endif
283 } 281 }
284#ifdef KBD_MODES 282#ifdef KBD_MODES
285 bool line_edit = false; 283 bool line_edit = false;