summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-05-09 16:01:21 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-05-09 16:01:21 +0000
commit20d031f9c70109dae2ea320a4c7264e1e489d8eb (patch)
tree4459bf0a6cbba8e557b60397acfff6f5be3bda10 /apps/settings.h
parentaf2b7adefe31839bebbc407083d980a112e7242c (diff)
downloadrockbox-20d031f9c70109dae2ea320a4c7264e1e489d8eb.tar.gz
rockbox-20d031f9c70109dae2ea320a4c7264e1e489d8eb.zip
Configurable dir browser file buffer size. No more 400-file limit. No more whining.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3661 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 1a29899c01..55a6f96e2e 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -154,6 +154,16 @@ struct user_settings
154 154
155 bool fade_on_stop; /* fade on pause/unpause/stop */ 155 bool fade_on_stop; /* fade on pause/unpause/stop */
156 bool caption_backlight; /* turn on backlight at end and start of track */ 156 bool caption_backlight; /* turn on backlight at end and start of track */
157
158#ifdef HAVE_FMRADIO
159 int fm_freq_step; /* Frequency step for manual tuning, in kHz */
160 bool fm_force_mono; /* Forces Mono mode if true */
161 bool fm_full_range; /* Enables full 10MHz-160MHz range if true, else
162 only 88MHz-108MHz */
163#endif
164
165 int max_files_in_dir; /* Max entries in directory (file browser) */
166 int max_files_in_playlist; /* Max entries in playlist */
157}; 167};
158 168
159/* prototypes */ 169/* prototypes */
@@ -209,9 +219,3 @@ enum { REPEAT_OFF, REPEAT_ALL, REPEAT_ONE, NUM_REPEAT_MODES };
209enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, NUM_FILTER_MODES }; 219enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, NUM_FILTER_MODES };
210 220
211#endif /* __SETTINGS_H__ */ 221#endif /* __SETTINGS_H__ */
212
213
214
215
216
217