summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-04-21 21:40:26 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-04-21 21:40:26 +0000
commit08ebcad06accd9393acab07d0ac522440638e523 (patch)
treebd3698dda75706d022b3fb78cbcc846a397a5ee8 /apps
parent215300d51101077a51b4f14f454c595c049c3eb6 (diff)
downloadrockbox-08ebcad06accd9393acab07d0ac522440638e523.tar.gz
rockbox-08ebcad06accd9393acab07d0ac522440638e523.zip
The month wasn't spoken in set_time_screen()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4540 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/screens.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/screens.c b/apps/screens.c
index 9e24ba9a18..b563155bde 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -843,7 +843,7 @@ static void say_time(int cursorpos, struct tm *tm)
843 } 843 }
844 844
845 if (cursorpos == 4) /* month */ 845 if (cursorpos == 4) /* month */
846 talk_id(LANG_MONTH_JANUARY + value - 1, false); 846 talk_id(LANG_MONTH_JANUARY + tm->tm_mon, false);
847 else 847 else
848 talk_value(value, unit[cursorpos], false); 848 talk_value(value, unit[cursorpos], false);
849} 849}