Adds the german beta to uppercase

git-svn-id: trunk@32738 -
This commit is contained in:
sekelsenmat 2011-10-07 09:54:36 +00:00
parent 675c9a516b
commit d2ff6af4c5

View File

@ -1206,6 +1206,7 @@ begin
// Major processing
case OldChar of
// Latin Characters 00000FFF http://en.wikibooks.org/wiki/Unicode/Character_reference/0000-0FFF
$C39F: NewChar := $5353; // ß => SS
$C3A0..$C3BD: NewChar := OldChar - $20;
$C3BE: NewChar := $C5B8; // ÿ
$C481..$C4B7: if OldChar mod 2 = 1 then NewChar := OldChar - 1;