scripts: gen_cfb_font_header: correct last character
DELETE is not a printable character. Signed-off-by: Peter A. Bigot <pab@pabigot.com>
This commit is contained in:
parent
fcb2968f6a
commit
8b4d529706
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ from PIL import Image
|
|||
from PIL import ImageDraw
|
||||
|
||||
PRINTABLE_MIN = 32
|
||||
PRINTABLE_MAX = 127
|
||||
PRINTABLE_MAX = 126
|
||||
|
||||
def generate_element(image, charcode):
|
||||
"""Generate CFB font element for a given character code from an image"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue