summaryrefslogtreecommitdiff
path: root/src/bin/fontdump.c
diff options
context:
space:
mode:
authorepochqwert <epoch@hacking.allowed.org>2015-06-12 22:26:31 -0500
committerepochqwert <epoch@hacking.allowed.org>2015-06-12 22:26:31 -0500
commita05876c9b860f1d5fa786746519ccb8b01db79e3 (patch)
tree8406bd3b42e8e3d7a3f2d56ad1396d62d8f4b1ac /src/bin/fontdump.c
parent05f18ac5c65755e1dde4d4bd44575011310bc648 (diff)
downloadmisc-a05876c9b860f1d5fa786746519ccb8b01db79e3.tar.gz
misc-a05876c9b860f1d5fa786746519ccb8b01db79e3.zip
commit of half-finished things.
Diffstat (limited to 'src/bin/fontdump.c')
-rw-r--r--src/bin/fontdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/fontdump.c b/src/bin/fontdump.c
index eb481d0..1ed2b05 100644
--- a/src/bin/fontdump.c
+++ b/src/bin/fontdump.c
@@ -10,7 +10,7 @@ int main(int argc,char *argv[]) {
read(0,map,height);
for(j=0;j<height;j++) {
for(k=7;k>=0;k--) {
- printf("%c",(map[j]>>k&1)?'#':' ');
+ printf("%c",(map[j]>>k&1)?'#':'.');
}
printf("\n");
}