mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-05-12 11:43:16 -04:00
fix FS#13864: Last char of folder and filename not voiced
Change-Id: I9c237bb7721224c6ba44b6511d72094722fa980c
This commit is contained in:
parent
a1ccb79727
commit
fd7ae09e7a
1 changed files with 1 additions and 1 deletions
|
|
@ -765,7 +765,7 @@ static int _talk_spell(const char* spell, size_t len, bool enqueue)
|
||||||
do_enqueue(enqueue); /* cut off all the pending stuff */
|
do_enqueue(enqueue); /* cut off all the pending stuff */
|
||||||
|
|
||||||
const char *last = spell;
|
const char *last = spell;
|
||||||
size_t len0 = len - 1;
|
size_t len0 = len;
|
||||||
/* Tokenize into UTF8 codepoints */
|
/* Tokenize into UTF8 codepoints */
|
||||||
while ((spell = utf8decode(spell, &c)), c != '\0')
|
while ((spell = utf8decode(spell, &c)), c != '\0')
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue