1
0
Fork 0
forked from len0rd/rockbox

The month wasn't spoken in set_time_screen()

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4540 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-04-21 21:40:26 +00:00
parent 215300d511
commit 08ebcad06a

View file

@ -843,7 +843,7 @@ static void say_time(int cursorpos, struct tm *tm)
}
if (cursorpos == 4) /* month */
talk_id(LANG_MONTH_JANUARY + value - 1, false);
talk_id(LANG_MONTH_JANUARY + tm->tm_mon, false);
else
talk_value(value, unit[cursorpos], false);
}