diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-08-26 13:21:14 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-08-26 13:21:14 +0000 |
| commit | 457b8a0a6743b7bee72d90e484055b7635861612 (patch) | |
| tree | e3256d74445f89d6a89df31255eb59a179ee3d11 /apps/settings.h | |
| parent | 006c46675e5677fc483c0a9e36a8bd65e488cf8b (diff) | |
| download | rockbox-457b8a0a6743b7bee72d90e484055b7635861612.zip rockbox-457b8a0a6743b7bee72d90e484055b7635861612.tar.gz rockbox-457b8a0a6743b7bee72d90e484055b7635861612.tar.bz2 rockbox-457b8a0a6743b7bee72d90e484055b7635861612.tar.xz | |
Added configurable disk spindown. The disk will also now not spin down while you are running around in the dir browser or pressing buttons in the wps.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1987 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
| -rw-r--r-- | apps/settings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings.h b/apps/settings.h index 36cf493..91ffb3e 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -63,6 +63,8 @@ struct user_settings bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */ int scroll_speed; /* long texts scrolling speed: 1-20 */ bool playlist_shuffle; + int ff_rewind; /* FF/Rewind step size (in seconds) */ + int disk_spindown; /* time until disk spindown, in seconds (0=off) */ /* while playing screen settings */ int wps_display; /* 0=id3, 1=file, 2=parse */ @@ -77,8 +79,6 @@ struct user_settings /* geeky persistent statistics */ unsigned int total_uptime; /* total uptime since rockbox was first booted */ - /* FF/Rewind step size (in seconds) */ - int ff_rewind; }; /* prototypes */ |