diff options
author | Hardeep Sidhu <dyp@pobox.com> | 2004-07-12 22:02:53 +0000 |
---|---|---|
committer | Hardeep Sidhu <dyp@pobox.com> | 2004-07-12 22:02:53 +0000 |
commit | ea598c7b667057ad42c21eda8f57f368b897495d (patch) | |
tree | e34c2e273b3a8c07de5f7bcbbd40621dd66ee936 /apps | |
parent | 4a7784ac4ead89c2125268cf7b89418abda79fb3 (diff) |
Show icons setting should be saved for all devices. Config version bumped because the settings structure order changed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4867 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 fd0a1b4292..c86957d3c8 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -71,7 +71,7 @@ char rockboxdir[] = ROCKBOX_DIR; /* config/font/data file directory */ char rec_base_directory[] = REC_BASE_DIR; -#define CONFIG_BLOCK_VERSION 14 +#define CONFIG_BLOCK_VERSION 15 #define CONFIG_BLOCK_SIZE 512 #define RTC_BLOCK_SIZE 44 @@ -189,7 +189,6 @@ static struct bit_entry rtc_bits[] = {1, S_O(flip_display), false, "flip display", off_on }, /* display */ {1, S_O(invert_cursor), false, "invert cursor", off_on }, - {1, S_O(show_icons), true, "show icons", off_on }, {1, S_O(statusbar), true, "statusbar", off_on }, {1, S_O(scrollbar), true, "scrollbar", off_on }, {1, S_O(buttonbar), true, "buttonbar", off_on }, @@ -197,6 +196,7 @@ static struct bit_entry rtc_bits[] = {1, S_O(battery_type), 0, "battery display", graphic_numeric }, {1, S_O(timeformat), 0, "time format", "24hour,12hour" }, #endif + {1, S_O(show_icons), true, "show icons", off_on }, /* system */ {4, S_O(poweroff), 10, "idle poweroff", "off,1,2,3,4,5,6,7,8,9,10,15,30,45,60" }, |