summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2018-02-04 00:17:39 -0600
committerepoch <epoch@hacking.allowed.org>2018-02-04 00:17:39 -0600
commit71219b221bca0b7d8c686cb830228423c178b39f (patch)
tree26f98764db5ffa52b6233e123e9fdf1002ebc51a
parente4aef14badad692612dd369e3bd35976009e11d8 (diff)
downloadhackvr-71219b221bca0b7d8c686cb830228423c178b39f.tar.gz
hackvr-71219b221bca0b7d8c686cb830228423c178b39f.zip
re-enabled background rectangles in hackvr_term
-rw-r--r--hackvr_term/hackvr_term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hackvr_term/hackvr_term.c b/hackvr_term/hackvr_term.c
index 175680f..e9784c2 100644
--- a/hackvr_term/hackvr_term.c
+++ b/hackvr_term/hackvr_term.c
@@ -28,7 +28,7 @@ void hackvr_draw_character(int c,int r,const TMTCHAR *ch) {
printf("# fail to open font\n");
return;
}
- //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;fgets(line,sizeof(line)-1,fp) != 0;i++) {
if(!strncmp(str,line,2)) {
printf("term_%02d_%02d addshape %d %s",c,r,ch->a.fg==-1?2:ch->a.fg+15,line+strlen("XX addshape X "));