1
0
Fork 0
forked from len0rd/rockbox

Explicitly say 'minutes' when speaking the runtime, fixes FS#11934.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29299 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2011-02-13 19:14:43 +00:00
parent f7c6034728
commit 46dbe3036c

View file

@ -805,7 +805,7 @@ static int runtime_speak_data(int selected_item, void* data)
talk_ids(false,
(selected_item < 2) ? LANG_RUNNING_TIME : LANG_TOP_TIME,
TALK_ID((selected_item < 2) ? global_status.runtime
: global_status.topruntime, UNIT_TIME));
: global_status.topruntime, UNIT_TIME_EXACT));
return 0;
}