1
0
Fork 0
forked from len0rd/rockbox

Slight code policing.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15065 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2007-10-10 06:02:08 +00:00
parent 100d343963
commit 064de4ce4d
2 changed files with 16 additions and 14 deletions

View file

@ -83,7 +83,8 @@ static void kbd_spellchar(char c)
if(c == ' ')
talk_id(VOICE_BLANK, false);
else talk_spell(tmp, false);
else
talk_spell(tmp, false);
}
}

View file

@ -199,7 +199,8 @@ static void kbd_spellchar(unsigned short c)
if(c == ' ')
talk_id(VOICE_BLANK, false);
else talk_spell(tmp, false);
else
talk_spell(tmp, false);
}
}