Commit 0fe903a2 authored by russhughes's avatar russhughes

Fix for #71 font2bitmap mangled character MAP

parent 7e781f2e
...@@ -399,7 +399,7 @@ def main(): ...@@ -399,7 +399,7 @@ def main():
height = args.font_height height = args.font_height
width = args.font_height if args.font_width is None else args.font_width width = args.font_height if args.font_width is None else args.font_width
characters = get_chars(args.characters) if args.string is None else args.string characters = get_chars(args.characters) if args.string is None else args.string
print(f'#{characters}')
fnt = Font(font_file, width, height) fnt = Font(font_file, width, height)
fnt.write_python(characters, font_file) fnt.write_python(characters, font_file)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment