summaryrefslogtreecommitdiff
path: root/apps/shortcuts.c
diff options
context:
space:
mode:
authorRichard Quirk <richard.quirk@gmail.com>2012-10-05 21:30:13 +0200
committerJonathan Gordon <rockbox@jdgordon.info>2012-10-06 11:59:13 +0200
commit71f70112b2484e45b332fd7f2da137145aa05e9d (patch)
tree84353c0f8e1fc09d07e3ffa887ae8bb37dd02112 /apps/shortcuts.c
parent9ee396b846a923a415d023be537cf5a2fc3bb78f (diff)
downloadrockbox-71f70112b2484e45b332fd7f2da137145aa05e9d.tar.gz
rockbox-71f70112b2484e45b332fd7f2da137145aa05e9d.zip
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.c2
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)
528#endif 528#endif
529 { 529 {
530 char timer_buf[10]; 530 char timer_buf[10];
531 set_sleep_timer(sc->u.timedata.sleep_timeout * 60); 531 set_sleeptimer_duration(sc->u.timedata.sleep_timeout);
532 splashf(HZ, "%s (%s)", str(LANG_SLEEP_TIMER), 532 splashf(HZ, "%s (%s)", str(LANG_SLEEP_TIMER),
533 sleep_timer_formatter(timer_buf, sizeof(timer_buf), 533 sleep_timer_formatter(timer_buf, sizeof(timer_buf),
534 sc->u.timedata.sleep_timeout, NULL)); 534 sc->u.timedata.sleep_timeout, NULL));