diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2006-10-09 23:01:29 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2006-10-09 23:01:29 +0000 |
| commit | 1308bd7c8d991c0bd21b0894644c8130d8961e5f (patch) | |
| tree | 1f16aa6df348b4716bf812f59c4b2e62c5f2de4b /apps | |
| parent | 7ab4701f356933fb2f72a8a352ec43493f9eda59 (diff) | |
| download | rockbox-1308bd7c8d991c0bd21b0894644c8130d8961e5f.zip rockbox-1308bd7c8d991c0bd21b0894644c8130d8961e5f.tar.gz rockbox-1308bd7c8d991c0bd21b0894644c8130d8961e5f.tar.bz2 rockbox-1308bd7c8d991c0bd21b0894644c8130d8961e5f.tar.xz | |
Fix the fm frequency not stored correctly when using europe region setting. Bump config block version, so save your settings!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11163 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/settings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings.c b/apps/settings.c index 63f85f0..2e64042 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -96,7 +96,7 @@ const char rec_base_directory[] = REC_BASE_DIR; #include "eq_menu.h" #endif -#define CONFIG_BLOCK_VERSION 53 +#define CONFIG_BLOCK_VERSION 54 #define CONFIG_BLOCK_SIZE 512 #define RTC_BLOCK_SIZE 44 @@ -293,7 +293,7 @@ static const struct bit_entry rtc_bits[] = /* tuner */ #ifdef CONFIG_TUNER {1, S_O(fm_force_mono), false, "force fm mono", off_on }, - {8, S_O(last_frequency), 0, NULL, NULL }, /* Default: MIN_FREQ */ + {9, S_O(last_frequency), 0, NULL, NULL }, /* Default: MIN_FREQ */ #endif #if BATTERY_TYPES_COUNT > 1 |