summaryrefslogtreecommitdiff
path: root/share/hackvr/examples/hackvr_term/hackvr_term.c
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2020-04-07 07:00:06 -0500
committerepoch <epoch@hacking.allowed.org>2020-04-07 07:00:06 -0500
commit36da2549891d0d67ed267b3bc5336bf14b2c64de (patch)
tree138437ba5b114b839532cfe3d206c2c89329b170 /share/hackvr/examples/hackvr_term/hackvr_term.c
parent167169abe4df9bd67b5994b6a665abb437947815 (diff)
downloadhackvr-36da2549891d0d67ed267b3bc5336bf14b2c64de.tar.gz
hackvr-36da2549891d0d67ed267b3bc5336bf14b2c64de.zip
made hackvr_term not bother with background squares for now. added an exec and pipefail to hackvr_data_decode.sh
Diffstat (limited to 'share/hackvr/examples/hackvr_term/hackvr_term.c')
-rw-r--r--share/hackvr/examples/hackvr_term/hackvr_term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/hackvr/examples/hackvr_term/hackvr_term.c b/share/hackvr/examples/hackvr_term/hackvr_term.c
index 71f2492..5fcf42c 100644
--- a/share/hackvr/examples/hackvr_term/hackvr_term.c
+++ b/share/hackvr/examples/hackvr_term/hackvr_term.c
@@ -60,7 +60,7 @@ void preload_glyphs() {
void hackvr_draw_character(int c,int r,const TMTCHAR *ch) {
char *line;
int i,ret=0;
- printf("term_%02d_%02d addshape %d 4 -1 -3 0 5 -3 0 5 7 0 -1 7 0\n",c,r,ch->a.bg+15);
+ //printf("term_%02d_%02d addshape %d 4 -1 -3 0 5 -3 0 5 7 0 -1 7 0\n",c,r,ch->a.bg+15);
for(i=0,line=glyphs[ch->c][0];line[0];i++,line=glyphs[ch->c][i]) {
ret=1;
printf("term_%02d_%02d addshape %d %s",c,r,ch->a.fg == -1 ? 17 : ch->a.fg + 15,line+strlen("XX addshape X"));