diff options
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 |
