diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2009-02-02 03:14:51 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2009-02-02 03:14:51 +0000 |
| commit | 701a593c5df9bbf88711781e1abdb09690076034 (patch) | |
| tree | b81c31a5f3718f3eb9fd18652571ee1c89aed994 /apps/settings.c | |
| parent | 1a00056f1f225ee0d1643d3e4e603de171f7ab9a (diff) | |
| download | rockbox-701a593c5df9bbf88711781e1abdb09690076034.zip rockbox-701a593c5df9bbf88711781e1abdb09690076034.tar.gz rockbox-701a593c5df9bbf88711781e1abdb09690076034.tar.bz2 rockbox-701a593c5df9bbf88711781e1abdb09690076034.tar.xz | |
continuation of last nights statusbar cleanup.
accept FS#9858 and FS#9859
make the rec and fm screens force the statusbar the correct way now which doesnt need extra status variables
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19904 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
| -rw-r--r-- | apps/settings.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/settings.c b/apps/settings.c index 7bbbe92..506fd5b 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -522,11 +522,6 @@ static bool settings_write_config(const char* filename, int options) fd = open(filename,O_CREAT|O_TRUNC|O_WRONLY); if (fd < 0) return false; -#if CONFIG_TUNER - bool statusbar = global_settings.statusbar; - if (global_status.statusbar_forced != 0 && statusbar) - global_settings.statusbar = false; -#endif fdprintf(fd, "# .cfg file created by rockbox %s - " "http://www.rockbox.org\r\n\r\n", appsversion); for(i=0; i<nb_settings; i++) @@ -567,9 +562,6 @@ static bool settings_write_config(const char* filename, int options) fdprintf(fd,"%s: %s\r\n",settings[i].cfg_name,value); } /* for(...) */ close(fd); -#if CONFIG_TUNER - global_settings.statusbar = statusbar; -#endif return true; } #ifndef HAVE_RTC_RAM |