diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-08-13 12:47:01 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-08-13 12:47:01 +0000 |
| commit | f6f3a1395ece444556583139d988657396bf8cb7 (patch) | |
| tree | 4545e5422b5dc8ef855e3c2b92ce91ba81b97ee3 | |
| parent | 638184f1a28f6e2fab225d9630baccdcff6dbf16 (diff) | |
| download | rockbox-f6f3a1395ece444556583139d988657396bf8cb7.zip rockbox-f6f3a1395ece444556583139d988657396bf8cb7.tar.gz rockbox-f6f3a1395ece444556583139d988657396bf8cb7.tar.bz2 rockbox-f6f3a1395ece444556583139d988657396bf8cb7.tar.xz | |
Incremented the config block version, to force default values for the LCD contrast setting
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1711 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 5dd5ea1..67530a9 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -112,7 +112,7 @@ static void init_config_buffer( void ) rtc_config_block[0] = 'R'; rtc_config_block[1] = 'o'; rtc_config_block[2] = 'c'; - rtc_config_block[3] = 0x0; /* config block version number */ + rtc_config_block[3] = 0x1; /* config block version number */ } #ifdef HAVE_RTC |