summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 1539d6d2e3..048c673539 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -77,7 +77,7 @@ struct user_settings
77 /* misc options */ 77 /* misc options */
78 78
79 int loop_playlist; /* do we return to top of playlist at end? */ 79 int loop_playlist; /* do we return to top of playlist at end? */
80 bool mp3filter; /* only display mp3/m3u files and dirs in directory? */ 80 int dirfilter; /* 0=display all, 1=only supported, 2=only music */
81 bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */ 81 bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */
82 int scroll_speed; /* long texts scrolling speed: 1-30 */ 82 int scroll_speed; /* long texts scrolling speed: 1-30 */
83 bool playlist_shuffle; 83 bool playlist_shuffle;
@@ -92,10 +92,6 @@ struct user_settings
92 /* show scroll bar */ 92 /* show scroll bar */
93 bool scrollbar; /* 0=hide, 1=show */ 93 bool scrollbar; /* 0=hide, 1=show */
94 94
95 /* Hidden and dotfile settings */
96 bool show_hidden_files; /* 1=show dotfiles/hidden,
97 0=hide dotfiles/hidden */
98
99 /* goto current song when exiting WPS */ 95 /* goto current song when exiting WPS */
100 bool browse_current; /* 1=goto current song, 96 bool browse_current; /* 1=goto current song,
101 0=goto previous location */ 97 0=goto previous location */
@@ -148,4 +144,7 @@ extern char rockboxdir[];
148#define DEFAULT_FF_REWIND_MIN_STEP FF_REWIND_1000 144#define DEFAULT_FF_REWIND_MIN_STEP FF_REWIND_1000
149#define DEFAULT_FF_REWIND_ACCEL_SETTING 3 145#define DEFAULT_FF_REWIND_ACCEL_SETTING 3
150 146
147/* dir filter options */
148enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, NUM_FILTER_MODES };
149
151#endif /* __SETTINGS_H__ */ 150#endif /* __SETTINGS_H__ */