diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-22 22:42:56 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-22 22:42:56 +0000 |
| commit | ebab62b00024d2524eff7e7ec33fdf4207f73251 (patch) | |
| tree | 5c4713b1e9fd939bfb85c32b63201ea062eb9d6a | |
| parent | 7c648303172e27fdeac62e12abd8ef7dc82c9489 (diff) | |
| download | rockbox-ebab62b00024d2524eff7e7ec33fdf4207f73251.zip rockbox-ebab62b00024d2524eff7e7ec33fdf4207f73251.tar.gz rockbox-ebab62b00024d2524eff7e7ec33fdf4207f73251.tar.bz2 rockbox-ebab62b00024d2524eff7e7ec33fdf4207f73251.tar.xz | |
Removed a warning on the recorder
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1406 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/status.c b/apps/status.c index 781fa90..6af0477 100644 --- a/apps/status.c +++ b/apps/status.c @@ -38,9 +38,9 @@ void status_set_playmode(enum playmode mode) void status_draw(void) { +#ifdef HAVE_LCD_CHARCELLS int battlevel = battery_level(); -#ifdef HAVE_LCD_CHARCELLS lcd_icon(ICON_BATTERY, true); if(battlevel > 25) lcd_icon(ICON_BATTERY_1, true); |