You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been having an issue with displaying a quaver (music note) using Latin schema. A peek into the code shows that the implementation of kLatinSpecialTable does not match the way its index is being calculated in HandleGLGR, where for GraphicSet::kLatinSpecial case we have:
uint32_t index = (uint32_t)ch - 0x21;
So, for ch = 0x21 we will get 0x0021, while we should get 0x266a according to ABNT 15608-3
The text was updated successfully, but these errors were encountered:
xqq
added a commit
that referenced
this issue
Sep 9, 2023
I have been having an issue with displaying a quaver (music note) using Latin schema. A peek into the code shows that the implementation of kLatinSpecialTable does not match the way its index is being calculated in HandleGLGR, where for GraphicSet::kLatinSpecial case we have:
uint32_t index = (uint32_t)ch - 0x21;
So, for ch = 0x21 we will get 0x0021, while we should get 0x266a according to ABNT 15608-3
The text was updated successfully, but these errors were encountered: