diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-11-28 11:06:21 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-11-28 11:06:21 +0000 |
| commit | 6691e6107ccfa547c451d82d75bd9360a312dffb (patch) | |
| tree | f8bbb9526970365d12d872febd0efb570a899056 | |
| parent | 7cd4bcd849e1225d81afcebe78d95c7032c1a05a (diff) | |
| download | rockbox-6691e6107ccfa547c451d82d75bd9360a312dffb.zip rockbox-6691e6107ccfa547c451d82d75bd9360a312dffb.tar.gz rockbox-6691e6107ccfa547c451d82d75bd9360a312dffb.tar.bz2 rockbox-6691e6107ccfa547c451d82d75bd9360a312dffb.tar.xz | |
The FM/V2 Recorder battery capacity default value is now 2200mAh
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4076 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/settings.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/settings.c b/apps/settings.c index 68e382a..6a7fe97 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -1441,7 +1441,11 @@ void settings_reset(void) { global_settings.invert_cursor = DEFAULT_INVERT_CURSOR_SETTING; global_settings.backlight_on_when_charging = DEFAULT_BACKLIGHT_ON_WHEN_CHARGING_SETTING; +#ifdef HAVE_LIION + global_settings.battery_capacity = 2200; /* mAh */ +#else global_settings.battery_capacity = 1500; /* mAh */ +#endif global_settings.trickle_charge = true; global_settings.dirfilter = SHOW_MUSIC; global_settings.sort_case = false; |