summaryrefslogtreecommitdiff
path: root/apps/settings.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-07-12 15:06:48 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-07-12 15:06:48 +0000
commit4a7784ac4ead89c2125268cf7b89418abda79fb3 (patch)
tree3cb4c01a3cb7502d4737060541f561cbcf0e8009 /apps/settings.c
parent3e92dbecc820d6ba4e31b6a4a766ed27c6e7b64b (diff)
downloadrockbox-4a7784ac4ead89c2125268cf7b89418abda79fb3.tar.gz
rockbox-4a7784ac4ead89c2125268cf7b89418abda79fb3.zip
The default radio frequency was bad
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4866 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
-rw-r--r--apps/settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c
index 925da81526..fd0a1b4292 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -222,7 +222,7 @@ static struct bit_entry rtc_bits[] =
222 /* If values are just added to the end, no need to bump the version. */ 222 /* If values are just added to the end, no need to bump the version. */
223#ifdef HAVE_FMRADIO 223#ifdef HAVE_FMRADIO
224 {1, S_O(fm_force_mono), false, "force fm mono", off_on }, 224 {1, S_O(fm_force_mono), false, "force fm mono", off_on },
225 {8, S_O(last_frequency), 994, NULL, NULL }, 225 {8, S_O(last_frequency), 0, NULL, NULL }, /* Default: MIN_FREQ */
226#endif 226#endif
227 227
228 /* Current sum of bits: 286 (worst case) */ 228 /* Current sum of bits: 286 (worst case) */