diff options
author | Richard Quirk <richard.quirk@gmail.com> | 2012-10-05 21:30:13 +0200 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2012-10-06 11:59:13 +0200 |
commit | 71f70112b2484e45b332fd7f2da137145aa05e9d (patch) | |
tree | 84353c0f8e1fc09d07e3ffa887ae8bb37dd02112 /apps/shortcuts.c | |
parent | 9ee396b846a923a415d023be537cf5a2fc3bb78f (diff) |
Add set_sleeptimer_duration function in minutes
Make set_sleep_timer a static function and only call
set_sleeptimer_duration externally, which is always called with minutes
values.
Change-Id: I985308bf014e354f91c47a0b2bf62f4f5a591919
Reviewed-on: http://gerrit.rockbox.org/327
Reviewed-by: Jonathan Gordon <rockbox@jdgordon.info>
Diffstat (limited to 'apps/shortcuts.c')
-rw-r--r-- | apps/shortcuts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/shortcuts.c b/apps/shortcuts.c index 50b8decfc6..ee8454485d 100644 --- a/apps/shortcuts.c +++ b/apps/shortcuts.c @@ -528,7 +528,7 @@ int do_shortcut_menu(void *ignored) #endif { char timer_buf[10]; - set_sleep_timer(sc->u.timedata.sleep_timeout * 60); + set_sleeptimer_duration(sc->u.timedata.sleep_timeout); splashf(HZ, "%s (%s)", str(LANG_SLEEP_TIMER), sleep_timer_formatter(timer_buf, sizeof(timer_buf), sc->u.timedata.sleep_timeout, NULL)); |