From ce013fd283d3eac5dc2316916f87b37c80715369 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Thu, 17 Sep 2015 19:26:55 +0000 Subject: [PATCH] We can't use 0x2584 for \x16 since that is the same as \xCD and the two are visually distinct, and \x16 doesn't connect to the right or to the bottom. This glyph is in Courier New, so simply revert to the previous "black rectange" value. --- src/sbbs3/js_global.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbbs3/js_global.c b/src/sbbs3/js_global.c index 1e1cbb079b..ca455b0e0c 100644 --- a/src/sbbs3/js_global.c +++ b/src/sbbs3/js_global.c @@ -1401,7 +1401,7 @@ static struct { { 8252 ,NULL }, /* double exclamation mark */ { 182 ,"para" }, /* pilcrow sign */ { 167 ,"sect" }, /* section sign */ - { 9604 ,NULL }, /* 0x2584 lower half block */ + { 9644 ,NULL }, /* 0x25AC black rectangle */ { 8616 ,NULL }, /* up down arrow with base */ { 8593 ,"uarr" }, /* upwards arrow */ { 8595 ,"darr" }, /* downwards arrow */ -- GitLab