diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-03-06 08:19:00 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-03-06 08:19:00 +0000 |
| commit | 38be0e65d3304bd649c18a71d2c4551b0afd5a0a (patch) | |
| tree | 7b295229adfc1cede208aded2c09b65104d95987 /apps | |
| parent | 82b26d2e5d5de861b58cd523276453c57580fd29 (diff) | |
| download | rockbox-38be0e65d3304bd649c18a71d2c4551b0afd5a0a.zip rockbox-38be0e65d3304bd649c18a71d2c4551b0afd5a0a.tar.gz rockbox-38be0e65d3304bd649c18a71d2c4551b0afd5a0a.tar.bz2 rockbox-38be0e65d3304bd649c18a71d2c4551b0afd5a0a.tar.xz | |
Refine the hack. Best I can do I think.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12637 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/recorder/keyboard.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c index 5d6679e..0aa7188 100644 --- a/apps/recorder/keyboard.c +++ b/apps/recorder/keyboard.c @@ -255,8 +255,12 @@ static int get_param_k(const struct keyboard_parameters *pm) int kbd_input(char* text, int buflen) { bool done = false; - /* This seems to keep the sizes of everything down */ +#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 int l; /* screen loop variable */ int text_w = 0; int editpos; /* Edit position on all screens */ |