mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
Make the charset more maintainable by using an enum for font indexing, fix wrong U circumflex, and add 2 missing characters to the vkeyboard.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12940 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e509fe1b56
commit
290a812e71
2 changed files with 536 additions and 503 deletions
|
@ -43,12 +43,12 @@ static unsigned short *kbd_setupkeys(int page, int* len)
|
||||||
{
|
{
|
||||||
case 0: /* Capitals */
|
case 0: /* Capitals */
|
||||||
p = "ABCDEFGHIJKLMNOPQRSTUVWXYZÀÁÂÃÄÅ"
|
p = "ABCDEFGHIJKLMNOPQRSTUVWXYZÀÁÂÃÄÅ"
|
||||||
"ÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÝ";
|
"ÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝ";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 1: /* Small */
|
case 1: /* Small */
|
||||||
p = "abcdefghijklmnopqrstuvwxyzßàáâãä"
|
p = "abcdefghijklmnopqrstuvwxyzßàáâãä"
|
||||||
"åçèéêëìíîïñòóôöøùúûüýÿ";
|
"åçèéêëìíîïñòóôõöøùúûüýÿ";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default: /* Others */
|
default: /* Others */
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue