diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-08-27 14:24:42 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-08-27 14:24:42 +0200 |
| commit | 5e48d8259fb2857ad4441de77cbacddd50a21ec0 (patch) | |
| tree | ec10871a799b6d1ab1c3fff7d275714b5af22632 /makefont.py | |
| parent | ced08dbfa11aee29a2f6f6801de243f4a160e5a1 (diff) | |
added bitmap fonts and put string for vesa modes
Diffstat (limited to 'makefont.py')
| -rw-r--r-- | makefont.py | 8 |
1 files changed, 4 insertions, 4 deletions
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 |
