summaryrefslogtreecommitdiff
path: root/uisimulator/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/tree.c')
-rw-r--r--uisimulator/tree.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/uisimulator/tree.c b/uisimulator/tree.c
index ff040e2ddf..b6342c67f5 100644
--- a/uisimulator/tree.c
+++ b/uisimulator/tree.c
@@ -46,6 +46,7 @@ bool dirbrowse(char *root)
46 if(!dir) 46 if(!dir)
47 return TRUE; /* failure */ 47 return TRUE; /* failure */
48 48
49#ifdef HAVE_LCD_BITMAP
49 lcd_clearrect(0, 0, LCD_WIDTH, LCD_HEIGHT); 50 lcd_clearrect(0, 0, LCD_WIDTH, LCD_HEIGHT);
50 51
51 lcd_puts(0,0, "[Browse]", 0); 52 lcd_puts(0,0, "[Browse]", 0);
@@ -97,6 +98,7 @@ bool dirbrowse(char *root)
97 break; 98 break;
98 } 99 }
99 } 100 }
101#endif
100 102
101 return FALSE; 103 return FALSE;
102} 104}