DrawString: Fix IsCJK definition
Fix IsCJK to include Hiragana, Katakana, Bopomofo, etc.
This commit is contained in:
parent
48ddb2ea06
commit
1de202cfe0
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ uint16_t GetUnicodeRow(char32_t codePoint)
|
|||
|
||||
bool IsCJK(uint16_t row)
|
||||
{
|
||||
return row >= 0x4e && row <= 0x9f;
|
||||
return row >= 0x30 && row <= 0x9f;
|
||||
}
|
||||
|
||||
bool IsHangul(uint16_t row)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue