summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-08-11 09:20:53 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-08-11 09:20:53 +0000
commit71f71ef8370c90b818318cf0d04749bb8e15a82c (patch)
tree3692e642fbfdb3455a3213a3cc7f0bcb87aba055 /apps
parentcd225736f95555c7083b642675d013bff8057d76 (diff)
downloadrockbox-71f71ef8370c90b818318cf0d04749bb8e15a82c.tar.gz
rockbox-71f71ef8370c90b818318cf0d04749bb8e15a82c.zip
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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/menu.c b/apps/menu.c
index 7267afe193..4be4e78e87 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -57,6 +57,7 @@ static bool inuse[MAX_MENUS] = { false };
57/* count in letter posistions, NOT pixels */ 57/* count in letter posistions, NOT pixels */
58void put_cursorxy(int x, int y, bool on) 58void put_cursorxy(int x, int y, bool on)
59{ 59{
60#ifdef HAVE_LCD_BITMAP
60#ifdef LOADABLE_FONTS 61#ifdef LOADABLE_FONTS
61 int fh; 62 int fh;
62 unsigned char* font = lcd_getcurrentldfont(); 63 unsigned char* font = lcd_getcurrentldfont();
@@ -64,6 +65,7 @@ void put_cursorxy(int x, int y, bool on)
64#else 65#else
65 int fh = 8; 66 int fh = 8;
66#endif 67#endif
68#endif
67 69
68 /* place the cursor */ 70 /* place the cursor */
69 if(on) { 71 if(on) {