diff options
author | Björn Stenberg <bjorn@haxx.se> | 2005-01-17 11:37:36 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2005-01-17 11:37:36 +0000 |
commit | fc53fd708fc12e1a67217c102ea8180b2bde6a6f (patch) | |
tree | d27775cc09f28414d2d5b4bca0b6f22df910845b /apps/settings_menu.c | |
parent | 025f5c00845a328eb0b8674bc88fd5f9cb8ee76d (diff) |
Added ID3 database dirfilter
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5574 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_menu.c')
-rw-r--r-- | apps/settings_menu.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c index eae39f905f..cf87564c9d 100644 --- a/apps/settings_menu.c +++ b/apps/settings_menu.c @@ -471,10 +471,11 @@ static bool dir_filter(void) { STR(LANG_FILTER_ALL) }, { STR(LANG_FILTER_SUPPORTED) }, { STR(LANG_FILTER_MUSIC) }, - { STR(LANG_FILTER_PLAYLIST) } + { STR(LANG_FILTER_PLAYLIST) }, + { STR(LANG_FILTER_ID3DB) } }; return set_option( str(LANG_FILTER), &global_settings.dirfilter, INT, - names, 4, NULL ); + names, 5, NULL ); } static bool sort_case(void) |