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:
118
118
run : |
119
119
python3 tools/scripts/authors.py --handles --count --shoutout --since 2017-01-01
120
120
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
121
122
122
123
stm32-examples :
123
124
runs-on : ubuntu-22.04
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ def read_font_file(filename):
152
152
if c == " " :
153
153
pass
154
154
elif c == "#" :
155
- y = char_line_index / 8
155
+ y = int ( char_line_index / 8 )
156
156
offset = y * char .width
157
157
char .data [offset + index ] |= 1 << (char_line_index % 8 )
158
158
else :
You can’t perform that action at this time.
0 commit comments