diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-08-11 09:20:53 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-08-11 09:20:53 +0000 |
| commit | 71f71ef8370c90b818318cf0d04749bb8e15a82c (patch) | |
| tree | 3692e642fbfdb3455a3213a3cc7f0bcb87aba055 /apps | |
| parent | cd225736f95555c7083b642675d013bff8057d76 (diff) | |
| download | rockbox-71f71ef8370c90b818318cf0d04749bb8e15a82c.zip rockbox-71f71ef8370c90b818318cf0d04749bb8e15a82c.tar.gz rockbox-71f71ef8370c90b818318cf0d04749bb8e15a82c.tar.bz2 rockbox-71f71ef8370c90b818318cf0d04749bb8e15a82c.tar.xz | |
Removed warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1667 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/menu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/menu.c b/apps/menu.c index 7267afe..4be4e78 100644 --- a/apps/menu.c +++ b/apps/menu.c @@ -57,6 +57,7 @@ static bool inuse[MAX_MENUS] = { false }; /* count in letter posistions, NOT pixels */ void put_cursorxy(int x, int y, bool on) { +#ifdef HAVE_LCD_BITMAP #ifdef LOADABLE_FONTS int fh; unsigned char* font = lcd_getcurrentldfont(); @@ -64,6 +65,7 @@ void put_cursorxy(int x, int y, bool on) #else int fh = 8; #endif +#endif /* place the cursor */ if(on) { |