diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-12 15:06:48 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-12 15:06:48 +0000 |
| commit | 4a7784ac4ead89c2125268cf7b89418abda79fb3 (patch) | |
| tree | 3cb4c01a3cb7502d4737060541f561cbcf0e8009 | |
| parent | 3e92dbecc820d6ba4e31b6a4a766ed27c6e7b64b (diff) | |
| download | rockbox-4a7784ac4ead89c2125268cf7b89418abda79fb3.zip rockbox-4a7784ac4ead89c2125268cf7b89418abda79fb3.tar.gz rockbox-4a7784ac4ead89c2125268cf7b89418abda79fb3.tar.bz2 rockbox-4a7784ac4ead89c2125268cf7b89418abda79fb3.tar.xz | |
The default radio frequency was bad
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4866 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/settings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c index 925da81..fd0a1b4 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -222,7 +222,7 @@ static struct bit_entry rtc_bits[] = /* If values are just added to the end, no need to bump the version. */ #ifdef HAVE_FMRADIO {1, S_O(fm_force_mono), false, "force fm mono", off_on }, - {8, S_O(last_frequency), 994, NULL, NULL }, + {8, S_O(last_frequency), 0, NULL, NULL }, /* Default: MIN_FREQ */ #endif /* Current sum of bits: 286 (worst case) */ |