From 6691e6107ccfa547c451d82d75bd9360a312dffb Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Fri, 28 Nov 2003 11:06:21 +0000 Subject: 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 --- apps/settings.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/settings.c b/apps/settings.c index 68e382a2dd..6a7fe971a2 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; -- cgit v1.2.3