Fix shortcut to talk time: force enqueuing otherwise it interrupts itself right away when speaking the shortcut entry again.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31465 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Stéphane Doyon 2011-12-29 21:30:28 +00:00
parent 2403f38c1f
commit c17b0af89e

View file

@ -478,9 +478,10 @@ int do_shortcut_menu(void *ignored)
break;
case SHORTCUT_TIME:
#if CONFIG_RTC
if (sc->u.timedata.talktime)
if (sc->u.timedata.talktime) {
talk_timedate();
else
talk_force_enqueue_next();
} else
#endif
{
char timer_buf[10];