diff options
author | Miika Pekkarinen <miipekk@ihme.org> | 2005-12-04 07:37:24 +0000 |
---|---|---|
committer | Miika Pekkarinen <miipekk@ihme.org> | 2005-12-04 07:37:24 +0000 |
commit | 5da90fa76065cb76f16949f397c4bdc4b4fd575f (patch) | |
tree | 6d903b6d32d0114af939a0d39d6c0747eb6a2f2c /apps/recorder | |
parent | 9fdec58b65080a5731a88fe23770b858da42e617 (diff) |
Fixed the yellow builds.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8139 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder')
-rw-r--r-- | apps/recorder/keyboard.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c index d17bcaf36b..1ab04e705d 100644 --- a/apps/recorder/keyboard.c +++ b/apps/recorder/keyboard.c @@ -174,8 +174,10 @@ static void kbd_spellchar(char c) int kbd_input(char* text, int buflen) { - bool done = false; + bool done = false; +#ifdef KBD_PAGE_FLIP int page = 0; +#endif int font_w = 0, font_h = 0, i; int x = 0, y = 0; int main_x, main_y, max_chars; |