working mac version

- note that this is the beginning of clang-formatting the code so you'll want to look at this diff with whitespace ignored
This commit is contained in:
Dagen Brock 2020-05-03 14:35:20 -05:00
parent 58e077d990
commit 8ee13530c5
4 changed files with 8637 additions and 8081 deletions

11018
src/b2d.c

File diff suppressed because it is too large Load Diff

1079
src/b2d.h

File diff suppressed because it is too large Load Diff

View File

@ -85,7 +85,7 @@ following Copyright and Conditions of use:
*/
/* the following version of the Tom Thumb Font was entirely
hand-made by me in my programmers editor by simply looking at
hand-made by me in my programmerís editor by simply looking at
a bitmap of the font characters and counting pixels.
Licence: You may use this program for whatever you wish as long
@ -763,7 +763,7 @@ unsigned char tomthumb[1728] = {
0,0,0,
0,0,0,
0,0,0,
/* ¦ */
/* */
1,1,1,
0,0,0,
1,1,1,

View File

@ -1,17 +1,22 @@
B2D="../b2d"
echo " --- Super High-Tech Test Suite v0.1234zaxxon ---"
#####################################
# LORES
echo "LORES TEST START"
$B2D black-40x48.bmp L N
$B2D white-40x48.bmp L N
diff BLACK-40X48.SLO BLACK.LORES
if [ $? -ne 0 ] ; then
echo "FAIL!"
echo "LORES FAIL!"
exit 1
fi
diff WHITE-40X48.SLO WHITE.LORES
if [ $? -ne 0 ] ; then
echo "FAIL!"
echo "LORES FAIL!"
exit 1
fi
echo "LORES TEST PASSED"