diff options
author | B. Watson <urchlay@slackware.uk> | 2024-08-01 00:00:00 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-08-01 00:00:00 -0400 |
commit | 074e28b6b8164d474be45b033d20ece462f5b281 (patch) | |
tree | a10d5264bad003004737335f2daadd10f9ab8be6 /fonts | |
parent | 3f7e4450e61fb9d62b3c12baa5ffb9b7c1e1604d (diff) | |
download | bw-atari8-tools-074e28b6b8164d474be45b033d20ece462f5b281.tar.gz |
fonts: mkpsf.pl less sensitive to whitespace or lack of in __DATA__ section.
Diffstat (limited to 'fonts')
-rw-r--r-- | fonts/FauxtariScalableMono.ttf | bin | 57512 -> 57508 bytes | |||
-rw-r--r-- | fonts/fauxtari-16.txt | 2 | ||||
-rw-r--r-- | fonts/fauxtari-24.txt | 3 | ||||
-rw-r--r-- | fonts/fauxtari-8.txt | 1 | ||||
-rw-r--r-- | fonts/mkpsf.pl | 3 |
5 files changed, 1 insertions, 8 deletions
diff --git a/fonts/FauxtariScalableMono.ttf b/fonts/FauxtariScalableMono.ttf Binary files differindex 8629f46..df9041a 100644 --- a/fonts/FauxtariScalableMono.ttf +++ b/fonts/FauxtariScalableMono.ttf diff --git a/fonts/fauxtari-16.txt b/fonts/fauxtari-16.txt index d2499a7..9c234db 100644 --- a/fonts/fauxtari-16.txt +++ b/fonts/fauxtari-16.txt @@ -4239,5 +4239,3 @@ Bitmap: \ ----########---- \ ---------------- ---------------- - - diff --git a/fonts/fauxtari-24.txt b/fonts/fauxtari-24.txt index 43d4f3e..124e1f4 100644 --- a/fonts/fauxtari-24.txt +++ b/fonts/fauxtari-24.txt @@ -4766,6 +4766,3 @@ Bitmap: \ ------------------------ ------------------------ ------------------------ - - - diff --git a/fonts/fauxtari-8.txt b/fonts/fauxtari-8.txt index b360bde..1b30e7e 100644 --- a/fonts/fauxtari-8.txt +++ b/fonts/fauxtari-8.txt @@ -3712,4 +3712,3 @@ Bitmap: \ -###-##- \ --####-- \ -------- - diff --git a/fonts/mkpsf.pl b/fonts/mkpsf.pl index 2ae1f2a..b061ad1 100644 --- a/fonts/mkpsf.pl +++ b/fonts/mkpsf.pl @@ -478,7 +478,7 @@ while($raw =~ /(.{8})/gc) { while(<DATA>) { push @scale1, $_; $cnt++ if /^%/; - if(/^\s/) { + if(/^\s*[-#]/) { push @scale2, scale_line($_, 2); push @scale3, scale_line($_, 3); } else { @@ -1348,4 +1348,3 @@ Bitmap: \ -###-##- \ --####-- \ -------- - |