1
0
Fork 0
forked from len0rd/rockbox

Fix the order in the sleep timer screen

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12411 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2007-02-20 10:33:30 +00:00
parent d31162a9d3
commit dd5297dd71

View file

@ -238,7 +238,7 @@ static int sleep_timer(void)
{
int minutes = (get_sleep_timer() + 59) / 60; /* round up */
return (int)set_int(str(LANG_SLEEP_TIMER), "", UNIT_MIN, &minutes,
&sleep_timer_set, 5, 0, 300, sleep_timer_formatter);
&sleep_timer_set, -5, 300, 0, sleep_timer_formatter);
}
MENUITEM_FUNCTION(sleep_timer_call, ID2P(LANG_SLEEP_TIMER), sleep_timer,