summaryrefslogtreecommitdiff
path: root/apps/recorder/icons.c
diff options
context:
space:
mode:
authorUwe Freese <thebreaker@rockbox.org>2003-02-12 22:21:07 +0000
committerUwe Freese <thebreaker@rockbox.org>2003-02-12 22:21:07 +0000
commit5e44a56b65da8fc02174a8397ba395a989dc063e (patch)
tree475651b6d682d3887993a58f6f56e9fd3cce8d7b /apps/recorder/icons.c
parentfaec49f9a801f4d50fab69826ff81d3eb34404b8 (diff)
disable charge control for FM
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3239 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/icons.c')
-rw-r--r--apps/recorder/icons.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c
index 2a9c00647b..acd6d6de4b 100644
--- a/apps/recorder/icons.c
+++ b/apps/recorder/icons.c
@@ -166,8 +166,12 @@ void statusbar_icon_battery(int percent, bool charging)
#ifdef SIMULATOR
if (global_settings.battery_type) {
#else
+#ifdef HAVE_CHARGE_CTRL /* Recorder */
/* show graphical animation when charging instead of numbers */
if ((global_settings.battery_type) && (charge_state != 1)) {
+#else /* FM */
+ if (global_settings.battery_type) {
+#endif /* HAVE_CHARGE_CTRL */
#endif
/* Numeric display */
snprintf(buffer, sizeof(buffer), "%3d", percent);