summaryrefslogtreecommitdiff
path: root/apps/settings_menu.c
diff options
context:
space:
mode:
authorJustin Heiner <jheiner@rockbox.org>2002-09-04 01:51:09 +0000
committerJustin Heiner <jheiner@rockbox.org>2002-09-04 01:51:09 +0000
commitba349223bf8b80d6f52e30bf3dfcdbf030fd0933 (patch)
tree974a145a002a556ce721ad45e54c2a9ec9709914 /apps/settings_menu.c
parent0ad2010865165120a521272eef68d00b6a7b2edc (diff)
downloadrockbox-ba349223bf8b80d6f52e30bf3dfcdbf030fd0933.tar.gz
rockbox-ba349223bf8b80d6f52e30bf3dfcdbf030fd0933.zip
wps-display.c
* Made 'Remaining Time' count correctly when doing FF/REW. * Fixed bug in player_progressbar that caused Illegal Instruction if the FF/Play went past the end of the song. wps.c * Removed 'if(lastbutton!=BUTTON_LEFT)' from track changes. It was causing tracks to not change unless button was pressed numerous times quickly :-) * For player, changed BUTTON_STOP to BUTTON_STOP | BUTTON_REL. Since stop is also the key to turn the device off, we don't want it to go to the dir browser unless the stop button is released. settings_menu.c * Changed the minimum disk spindown time to 3 seconds, due to reported problems if set below that. makefile.vc6 * Fixed the VC makefile to work with both Recorder & Player again. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2159 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_menu.c')
-rw-r--r--apps/settings_menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index da2098e921..cb85af317c 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -150,7 +150,7 @@ static Menu timedate_set(void)
150static Menu spindown(void) 150static Menu spindown(void)
151{ 151{
152 set_int("[Disk spindown]", "s", &global_settings.disk_spindown, 152 set_int("[Disk spindown]", "s", &global_settings.disk_spindown,
153 ata_spindown, 1, 1, 254 ); 153 ata_spindown, 1, 3, 254 );
154 return MENU_OK; 154 return MENU_OK;
155} 155}
156 156