diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-01-29 06:57:54 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-01-29 06:57:54 +0000 |
commit | ba75e6038f3f9af54bdeaf9feb1f4bd90c042f19 (patch) | |
tree | 3fe37150d6c954d49761f75482e749561982b00e /apps/settings_list.c | |
parent | 1d095d1545fcbd74d201a5d63cee654fe9141187 (diff) |
Move the playlist catalog config into the standard config files. 1 less disk spinup when the playlist cataloge is used the first time.
The manual doesnt currently mention this setting (or ever did). use "playlist catalog directory:/path/to/Playlists" in the .cfg
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16181 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r-- | apps/settings_list.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c index b52044c933..ae998f85ed 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -1187,6 +1187,8 @@ const struct settings_list settings[] = { ID2P(LANG_OFF), ID2P(LANG_WEAK), ID2P(LANG_MODERATE), ID2P(LANG_STRONG)), OFFON_SETTING(0, keyclick_repeats, LANG_KEYCLICK_REPEATS, false, "keyclick repeats", NULL), #endif /* CONFIG_CODEC == SWCODEC */ + FILENAME_SETTING(0, playlist_catalog_dir, "playlist catalog directory", + PLAYLIST_CATALOG_DEFAULT_DIR, "", "", MAX_FILENAME+1), }; const int nb_settings = sizeof(settings)/sizeof(*settings); |