Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
TFT_eSPI
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
TFT_eSPI
Commits
771b52f8
Unverified
Commit
771b52f8
authored
Feb 15, 2020
by
Bodmer
Committed by
GitHub
Feb 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix #546
parent
eac96793
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Extensions/Smooth_font.h
Extensions/Smooth_font.h
+2
-2
No files found.
Extensions/Smooth_font.h
View file @
771b52f8
...
...
@@ -19,7 +19,7 @@
// This is for the whole font
typedef
struct
{
const
uint8_t
*
gArray
=
nullptr
;
//array start pointer
const
uint8_t
*
gArray
;
//array start pointer
uint16_t
gCount
;
// Total number of characters
uint16_t
yAdvance
;
// Line advance
uint16_t
spaceWidth
;
// Width of a space character
...
...
@@ -29,7 +29,7 @@
uint16_t
maxDescent
;
// Maximum descent found in font
}
fontMetrics
;
fontMetrics
gFont
=
{
0
,
0
,
0
,
0
,
0
,
0
,
0
};
fontMetrics
gFont
=
{
nullptr
,
0
,
0
,
0
,
0
,
0
,
0
,
0
};
// These are for the metrics for each individual glyph (so we don't need to seek this in file and waste time)
uint16_t
*
gUnicode
=
NULL
;
//UTF-16 code, the codes are searched so do not need to be sequential
...
...
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