Fix GetGlyphRangesKorean() end-range to end at 0xD7A3 (instead of 0xD79D). (#348, #3217)

https://en.wikipedia.org/wiki/Hangul_Syllables
This commit is contained in:
Maru
2020-05-10 07:01:54 +09:00
committed by omar
parent a6f4b0fd70
commit 6b80bd9cc3
2 changed files with 2 additions and 1 deletions

View File

@ -2340,7 +2340,7 @@ const ImWchar* ImFontAtlas::GetGlyphRangesKorean()
{
0x0020, 0x00FF, // Basic Latin + Latin Supplement
0x3131, 0x3163, // Korean alphabets
0xAC00, 0xD79D, // Korean characters
0xAC00, 0xD7A3, // Korean characters
0,
};
return &ranges[0];