Update font renderer example to avoid number to string ambiguity (#4544)

This commit is contained in:
H. Árkosi Róbert 2024-12-28 23:12:33 +01:00 committed by GitHub
parent 0a8a374764
commit cd2b971ffa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -52,12 +52,13 @@ Next, create a ``font:`` section in your configuration:
size: 28
bpp: 4
glyphs: [
a,A,á,Á,e,E,é,É,
0123456789aAáÁeEéÉ,
(,),+,-,_,.,°,•,µ,
"\u0020", #space
"\u0021", #!
"\u0022", #"
"\u0027", #'
"\u0020", # space
"\u002C", # ,
"\u0021", # !
"\u0022", # "
"\u0027", # '
]
- file: "fonts/RobotoCondensed-Regular.ttf"