diff options
Diffstat (limited to 'apps/status.c')
| -rw-r--r-- | apps/status.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/status.c b/apps/status.c index ca4b218..9f43c65 100644 --- a/apps/status.c +++ b/apps/status.c @@ -43,12 +43,12 @@ #endif #include "usb.h" -static enum playmode ff_mode; +enum playmode ff_mode; -static long switch_tick; -static bool battery_state = true; +long switch_tick; +bool battery_state = true; #ifdef HAVE_CHARGING -static int battery_charge_step = 0; +int battery_charge_step = 0; #endif struct status_info { @@ -123,10 +123,10 @@ int current_playmode(void) } #if defined(HAVE_LCD_CHARCELLS) -static bool record = false; -static bool audio = false; -static bool param = false; -static bool usb = false; +bool record = false; +bool audio = false; +bool param = false; +bool usb = false; void status_set_record(bool b) { |