BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lvgl
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
lvgl
Commits
ff3bbc56
Commit
ff3bbc56
authored
Feb 03, 2018
by
Gabor Kiss-Vamosi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update lv_txt.c
fix lv_txt_ut8_size() with 4 byte characters.
parent
3e5d43fd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lv_txt.c
lv_misc/lv_txt.c
+1
-1
No files found.
lv_misc/lv_txt.c
View file @
ff3bbc56
...
...
@@ -305,7 +305,7 @@ uint8_t lv_txt_utf8_size(uint8_t c)
if
((
c
&
0x80
)
==
0
)
return
1
;
else
if
((
c
&
0xE0
)
==
0xC0
)
return
2
;
else
if
((
c
&
0xF0
)
==
0xE0
)
return
3
;
else
if
((
c
&
0xF
1
)
==
0xF0
)
return
4
;
else
if
((
c
&
0xF
8
)
==
0xF0
)
return
4
;
return
0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment