diff options
| author | Nils Wallménius <nils@rockbox.org> | 2010-08-09 12:21:11 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2010-08-09 12:21:11 +0000 |
| commit | f20c72a6f12ac67c62484fff65ca4db3e68708e7 (patch) | |
| tree | 81396c80769110a1b1c3e9f35ed21e47747b313c | |
| parent | 93c81dcd26c1f9b6099c36256d6f63539b33b85b (diff) | |
| download | rockbox-f20c72a6f12ac67c62484fff65ca4db3e68708e7.zip rockbox-f20c72a6f12ac67c62484fff65ca4db3e68708e7.tar.gz rockbox-f20c72a6f12ac67c62484fff65ca4db3e68708e7.tar.bz2 rockbox-f20c72a6f12ac67c62484fff65ca4db3e68708e7.tar.xz | |
Remove old kluge that makes little difference with the new arm toolchain.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27761 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/recorder/keyboard.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c index 8dea527..c48eced 100644 --- a/apps/recorder/keyboard.c +++ b/apps/recorder/keyboard.c @@ -328,12 +328,7 @@ static void kbd_move_picker_vertical(struct keyboard_parameters *pm, int kbd_input(char* text, int buflen) { bool done = false; -#ifdef CPU_ARM - /* This seems to keep the sizes for ARM way down */ - struct keyboard_parameters * volatile param = kbd_param; -#else struct keyboard_parameters * const param = kbd_param; -#endif struct edit_state state; int l; /* screen loop variable */ unsigned short ch; |