From 5e48d8259fb2857ad4441de77cbacddd50a21ec0 Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Wed, 27 Aug 2014 14:24:42 +0200 Subject: added bitmap fonts and put string for vesa modes --- makefont.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'makefont.py') diff --git a/makefont.py b/makefont.py index 22ee576..be3c072 100644 --- a/makefont.py +++ b/makefont.py @@ -15,13 +15,13 @@ while True: if not c: break - if c=="0": + if c=="0" or c=='_': l+=1 - b+=c + b+="0" - if c=="1": + if c=="1" or c=='X': l+=1 - b+=c + b+="1" if l==8: print b -- cgit v1.2.3