summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-01-29 06:57:54 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-01-29 06:57:54 +0000
commitba75e6038f3f9af54bdeaf9feb1f4bd90c042f19 (patch)
tree3fe37150d6c954d49761f75482e749561982b00e /apps/settings_list.c
parent1d095d1545fcbd74d201a5d63cee654fe9141187 (diff)
downloadrockbox-ba75e6038f3f9af54bdeaf9feb1f4bd90c042f19.tar.gz
rockbox-ba75e6038f3f9af54bdeaf9feb1f4bd90c042f19.zip
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.c2
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[] = {
1187 ID2P(LANG_OFF), ID2P(LANG_WEAK), ID2P(LANG_MODERATE), ID2P(LANG_STRONG)), 1187 ID2P(LANG_OFF), ID2P(LANG_WEAK), ID2P(LANG_MODERATE), ID2P(LANG_STRONG)),
1188 OFFON_SETTING(0, keyclick_repeats, LANG_KEYCLICK_REPEATS, false, "keyclick repeats", NULL), 1188 OFFON_SETTING(0, keyclick_repeats, LANG_KEYCLICK_REPEATS, false, "keyclick repeats", NULL),
1189#endif /* CONFIG_CODEC == SWCODEC */ 1189#endif /* CONFIG_CODEC == SWCODEC */
1190 FILENAME_SETTING(0, playlist_catalog_dir, "playlist catalog directory",
1191 PLAYLIST_CATALOG_DEFAULT_DIR, "", "", MAX_FILENAME+1),
1190}; 1192};
1191 1193
1192const int nb_settings = sizeof(settings)/sizeof(*settings); 1194const int nb_settings = sizeof(settings)/sizeof(*settings);