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:
parent
d31162a9d3
commit
dd5297dd71
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ static int sleep_timer(void)
|
||||||
{
|
{
|
||||||
int minutes = (get_sleep_timer() + 59) / 60; /* round up */
|
int minutes = (get_sleep_timer() + 59) / 60; /* round up */
|
||||||
return (int)set_int(str(LANG_SLEEP_TIMER), "", UNIT_MIN, &minutes,
|
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,
|
MENUITEM_FUNCTION(sleep_timer_call, ID2P(LANG_SLEEP_TIMER), sleep_timer,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue