From 1bb5d690ff444714b795343065b7bfe55280f9b2 Mon Sep 17 00:00:00 2001 From: nick black Date: Wed, 9 Jun 2021 20:45:06 -0400 Subject: [PATCH] debug_caps: show halfblock glyphs --- src/lib/debug.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/debug.c b/src/lib/debug.c index f4e141533..ab3c00cb0 100644 --- a/src/lib/debug.c +++ b/src/lib/debug.c @@ -43,7 +43,8 @@ tinfo_debug_caps(const tinfo* ti, FILE* debugfp, int rows, int cols, capbool(ti->sextants), capbool(ti->braille), capbool(images), capbool(videos)); if(ti->utf8){ - fprintf(debugfp, "%s Quads {%ls}\n", indent, get_blitter_egcs(NCBLIT_2x2)); + fprintf(debugfp, "%s Halves {%ls} Quads {%ls}\n", indent, + get_blitter_egcs(NCBLIT_2x1), get_blitter_egcs(NCBLIT_2x2)); fprintf(debugfp, "%sSextants ⎧%.120ls⎫\n", indent, get_blitter_egcs(NCBLIT_3x2)); fprintf(debugfp, "%s ⎩%ls⎭\n", indent, get_blitter_egcs(NCBLIT_3x2) + 32); fprintf(debugfp, "%s Braille {%ls}\n", indent, get_blitter_egcs(NCBLIT_BRAILLE));