From ba349223bf8b80d6f52e30bf3dfcdbf030fd0933 Mon Sep 17 00:00:00 2001 From: Justin Heiner Date: Wed, 4 Sep 2002 01:51:09 +0000 Subject: 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 --- apps/settings_menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/settings_menu.c') 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) static Menu spindown(void) { set_int("[Disk spindown]", "s", &global_settings.disk_spindown, - ata_spindown, 1, 1, 254 ); + ata_spindown, 1, 3, 254 ); return MENU_OK; } -- cgit v1.2.3