diff options
| -rw-r--r-- | apps/status.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/status.c b/apps/status.c index 7d941c3..a7bc21e 100644 --- a/apps/status.c +++ b/apps/status.c @@ -169,6 +169,11 @@ void status_draw(void) #ifdef HAVE_RTC statusbar_time(); #endif +#ifdef SIMULATOR + lcd_update(); +#else + lcd_update_rect(0,0,LCD_WIDTH,8); +#endif } #endif } |