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
In the code, the ids_size variable is of type uint8_t. However, the font library generated by the tool has a list_length of 256, causing ids_size to wrap around to 0. This results in lv_mem_alloc failing to allocate RAM.
[ HSBR26.txt
](url)
The text was updated successfully, but these errors were encountered:
In the cmap_split function, can these two conditions be changed to less than 255? Since path.end is incremented by 1, if all_codepoints[i] - all_codepoints[j] equals 255, it satisfies the condition of being less than 256. After path.end + 1, it becomes 256. Could this be the reason why list_length exceeds 255?
In the code, the ids_size variable is of type uint8_t. However, the font library generated by the tool has a list_length of 256, causing ids_size to wrap around to 0. This results in lv_mem_alloc failing to allocate RAM.
[
HSBR26.txt
](url)
The text was updated successfully, but these errors were encountered: