summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/talk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/talk.c b/apps/talk.c
index 6807481e0d..1a1cb81cd1 100644
--- a/apps/talk.c
+++ b/apps/talk.c
@@ -603,7 +603,7 @@ int talk_file(const char* filename, bool enqueue)
603 but not necessarily for other languages (e.g. german) */ 603 but not necessarily for other languages (e.g. german) */
604int talk_number(long n, bool enqueue) 604int talk_number(long n, bool enqueue)
605{ 605{
606 int level = 0; /* mille count */ 606 int level = 2; /* mille count */
607 long mil = 1000000000; /* highest possible "-illion" */ 607 long mil = 1000000000; /* highest possible "-illion" */
608 608
609#if CONFIG_CODEC != SWCODEC 609#if CONFIG_CODEC != SWCODEC
@@ -657,9 +657,9 @@ int talk_number(long n, bool enqueue)
657 657
658 /* add billion, million, thousand */ 658 /* add billion, million, thousand */
659 if (mil) 659 if (mil)
660 talk_id(VOICE_BILLION + level, true); 660 talk_id(VOICE_THOUSAND + level, true);
661 } 661 }
662 level++; 662 level--;
663 } 663 }
664 664
665 return 0; 665 return 0;