diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-05-09 16:01:21 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-05-09 16:01:21 +0000 |
| commit | 20d031f9c70109dae2ea320a4c7264e1e489d8eb (patch) | |
| tree | 4459bf0a6cbba8e557b60397acfff6f5be3bda10 /apps/settings.h | |
| parent | af2b7adefe31839bebbc407083d980a112e7242c (diff) | |
| download | rockbox-20d031f9c70109dae2ea320a4c7264e1e489d8eb.zip rockbox-20d031f9c70109dae2ea320a4c7264e1e489d8eb.tar.gz rockbox-20d031f9c70109dae2ea320a4c7264e1e489d8eb.tar.bz2 rockbox-20d031f9c70109dae2ea320a4c7264e1e489d8eb.tar.xz | |
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.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/apps/settings.h b/apps/settings.h index 1a29899..55a6f96 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -154,6 +154,16 @@ struct user_settings bool fade_on_stop; /* fade on pause/unpause/stop */ bool caption_backlight; /* turn on backlight at end and start of track */ + +#ifdef HAVE_FMRADIO + int fm_freq_step; /* Frequency step for manual tuning, in kHz */ + bool fm_force_mono; /* Forces Mono mode if true */ + bool fm_full_range; /* Enables full 10MHz-160MHz range if true, else + only 88MHz-108MHz */ +#endif + + int max_files_in_dir; /* Max entries in directory (file browser) */ + int max_files_in_playlist; /* Max entries in playlist */ }; /* prototypes */ @@ -209,9 +219,3 @@ enum { REPEAT_OFF, REPEAT_ALL, REPEAT_ONE, NUM_REPEAT_MODES }; enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, NUM_FILTER_MODES }; #endif /* __SETTINGS_H__ */ - - - - - - |