summaryrefslogtreecommitdiff
path: root/apps/status.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/status.c')
-rw-r--r--apps/status.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/status.c b/apps/status.c
index ca4b21833e..9f43c6551d 100644
--- a/apps/status.c
+++ b/apps/status.c
@@ -43,12 +43,12 @@
43#endif 43#endif
44#include "usb.h" 44#include "usb.h"
45 45
46static enum playmode ff_mode; 46enum playmode ff_mode;
47 47
48static long switch_tick; 48long switch_tick;
49static bool battery_state = true; 49bool battery_state = true;
50#ifdef HAVE_CHARGING 50#ifdef HAVE_CHARGING
51static int battery_charge_step = 0; 51int battery_charge_step = 0;
52#endif 52#endif
53 53
54struct status_info { 54struct status_info {
@@ -123,10 +123,10 @@ int current_playmode(void)
123} 123}
124 124
125#if defined(HAVE_LCD_CHARCELLS) 125#if defined(HAVE_LCD_CHARCELLS)
126static bool record = false; 126bool record = false;
127static bool audio = false; 127bool audio = false;
128static bool param = false; 128bool param = false;
129static bool usb = false; 129bool usb = false;
130 130
131void status_set_record(bool b) 131void status_set_record(bool b)
132{ 132{