summaryrefslogtreecommitdiff
path: root/apps/talk.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/talk.c')
-rw-r--r--apps/talk.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/talk.c b/apps/talk.c
index 551d9672bc..827dd10c2a 100644
--- a/apps/talk.c
+++ b/apps/talk.c
@@ -1493,9 +1493,13 @@ void talk_time(const struct tm *tm, bool enqueue)
1493 else 1493 else
1494 { 1494 {
1495 /* Voice the time in 24 hour format */ 1495 /* Voice the time in 24 hour format */
1496 if(tm->tm_hour < 10)
1497 talk_id(VOICE_OH, true);
1496 talk_number(tm->tm_hour, enqueue); 1498 talk_number(tm->tm_hour, enqueue);
1497 if (tm->tm_min == 0) 1499 if (tm->tm_min == 0)
1498 talk_ids(true, VOICE_HUNDRED, VOICE_HOUR); 1500 {
1501 talk_ids(true, VOICE_HUNDRED, VOICE_HOURS);
1502 }
1499 else 1503 else
1500 { 1504 {
1501 /* Pronounce the leading 0 */ 1505 /* Pronounce the leading 0 */