summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
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) {