Module: wine Branch: master Commit: 5aa1f6b7a5d4de373c6f366c9cf7f7a947eb23b5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5aa1f6b7a5d4de373c6f366c9c...
Author: Aric Stewart aric@codeweavers.com Date: Fri Sep 6 14:47:40 2013 -0500
Unicode Private Use Area is also rotated by tategaki.
---
dlls/gdi32/freetype.c | 3 ++- dlls/wineps.drv/text.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c index d9f111a..2a2619ee 100644 --- a/dlls/gdi32/freetype.c +++ b/dlls/gdi32/freetype.c @@ -6152,7 +6152,8 @@ static const struct { WCHAR lower; WCHAR upper;} unrotate_ranges[] = {0xA000, 0xABFF}, /* Hangul Syllables */ /* Hangul Jamo Extended-B */ - {0xD800, 0xF8FF}, + {0xD800, 0xDFFF}, + /* Private Use Area */ /* CJK Compatibility Ideographs */ {0xFB00, 0xFE0F}, /* Vertical Forms */ diff --git a/dlls/wineps.drv/text.c b/dlls/wineps.drv/text.c index a9623a1..7ba59f9 100644 --- a/dlls/wineps.drv/text.c +++ b/dlls/wineps.drv/text.c @@ -65,7 +65,8 @@ static const struct { WCHAR lower; WCHAR upper;} unrotate_ranges[] = {0xA000, 0xABFF}, /* Hangul Syllables */ /* Hangul Jamo Extended-B */ - {0xD800, 0xF8FF}, + {0xD800, 0xDFFF}, + /* Private Use Area */ /* CJK Compatibility Ideographs */ {0xFB00, 0xFE0F}, /* Vertical Forms */