File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ jobs:
118118 run : |
119119 python3 tools/scripts/authors.py --handles --count --shoutout --since 2017-01-01
120120 python3 tools/xpcc_generator/builder/system_layout.py examples/xpcc/xml/communication.xml -o /tmp
121+ python3 tools/font_creator/font_export.py tools/font_creator/fonts/all_caps_3x5.font /tmp/all_caps_converted
121122
122123 stm32-examples :
123124 runs-on : ubuntu-22.04
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ def read_font_file(filename):
152152 if c == " " :
153153 pass
154154 elif c == "#" :
155- y = char_line_index / 8
155+ y = int ( char_line_index / 8 )
156156 offset = y * char .width
157157 char .data [offset + index ] |= 1 << (char_line_index % 8 )
158158 else :
You can’t perform that action at this time.
0 commit comments