forked from len0rd/rockbox
Patch 882053, mangled bookmark seetings in cfg file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4420 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4ec88db243
commit
c2d1540bbb
1 changed files with 2 additions and 2 deletions
|
|
@ -1175,7 +1175,7 @@ bool settings_load_config(char* file)
|
||||||
}
|
}
|
||||||
else if (!strcasecmp(name, "autocreate bookmarks"))
|
else if (!strcasecmp(name, "autocreate bookmarks"))
|
||||||
{
|
{
|
||||||
static char* options[] = {"off", "on", "ask","recent only - yes","recent only - ask"};
|
static char* options[] = {"off", "on", "ask","recent only - on", "recent only - ask"};
|
||||||
set_cfg_option(&global_settings.autocreatebookmark, value, options, 5);
|
set_cfg_option(&global_settings.autocreatebookmark, value, options, 5);
|
||||||
}
|
}
|
||||||
else if (!strcasecmp(name, "use most-recent-bookmarks"))
|
else if (!strcasecmp(name, "use most-recent-bookmarks"))
|
||||||
|
|
@ -1518,7 +1518,7 @@ bool settings_save_config(void)
|
||||||
|
|
||||||
{
|
{
|
||||||
static char* options[] = {"off", "on", "unique only"};
|
static char* options[] = {"off", "on", "unique only"};
|
||||||
fprintf(fd, "UseMRB: %s\r\n", options[global_settings.usemrb]);
|
fprintf(fd, "use most-recent-bookmarks: %s\r\n", options[global_settings.usemrb]);
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf(fd, "#\r\n# Playlists\r\n#\r\n");
|
fprintf(fd, "#\r\n# Playlists\r\n#\r\n");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue