From f042135c5af175c34924a4277d125a7d8c0f9a18 Mon Sep 17 00:00:00 2001 From: nick black Date: Wed, 23 Jun 2021 15:05:43 -0400 Subject: [PATCH] term_caps: remove duplicated eights block --- src/lib/debug.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/debug.c b/src/lib/debug.c index e55203ae6..1d50eb477 100644 --- a/src/lib/debug.c +++ b/src/lib/debug.c @@ -95,16 +95,16 @@ tinfo_debug_caps(const tinfo* ti, FILE* debugfp, int rows, int cols, NCBOXHEAVYW + 2, NCBOXHEAVYW + 5, NCBOXROUNDW + 2, NCBOXROUNDW + 5, NCBOXDOUBLEW + 2, NCBOXDOUBLEW + 5); - fprintf(debugfp, "%s⎡%.192ls⎤ ⎪🮉▍⎪ 🯸🯹\n", indent, + fprintf(debugfp, "%s⎡%.192ls⎤ ⎨▐▌⎬ 🯸🯹\n", indent, get_blitter_egcs(NCBLIT_BRAILLE)); - fprintf(debugfp, "%s⎢%.192ls⎥ ⎨▐▌⎬\n", indent, - get_blitter_egcs(NCBLIT_BRAILLE) + 64); fprintf(debugfp, "%s⎢%.192ls⎥ ⎪🮈▋⎪\n", indent, + get_blitter_egcs(NCBLIT_BRAILLE) + 64); + fprintf(debugfp, "%s⎢%.192ls⎥ ⎪🮇▊⎪\n", indent, get_blitter_egcs(NCBLIT_BRAILLE) + 128); - fprintf(debugfp, "%s⎣%.192ls⎦ ⎪🮇▊⎪\n", indent, + fprintf(debugfp, "%s⎣%.192ls⎦ ⎪▕▉⎪\n", indent, get_blitter_egcs(NCBLIT_BRAILLE) + 192); - fprintf(debugfp, "%s ⎛%ls⎞ ▔🭶🭷🭸🭹🭺🭻▁ 🭁 🭂 🭃 🭄 🭅 🭆 🭑 🭐 🭏 🭎 🭍 🭌 🭆🭑 🭄🭏 🭅🭐 🭃🭎 🭂🭍 🭁🭌 ⎪▕▉⎪ 🭨🭪\n", indent, get_blitter_egcs(NCBLIT_8x1)); - fprintf(debugfp, "%s ⎝%s⎠ ▏🭰🭱🭲🭳🭴🭵▕ 🭒 🭓 🭔 🭕 🭖 🭧 🭜 🭟 🭠 🭡 🭞 🭝 🭧🭜 🭕🭠 🭖🭡 🭔🭟 🭓🭞 🭒🭝 ⎩ █⎭ 🭪🭨\n", indent, "█🮆🮅🮄▀🮃🮂▔ "); + fprintf(debugfp, "%s ⎛%ls⎞ ▔🭶🭷🭸🭹🭺🭻▁ 🭁 🭂 🭃 🭄 🭅 🭆 🭑 🭐 🭏 🭎 🭍 🭌 🭆🭑 🭄🭏 🭅🭐 🭃🭎 🭂🭍 🭁🭌 🭨🭪 ⎩ █⎭\n", indent, get_blitter_egcs(NCBLIT_8x1)); + fprintf(debugfp, "%s ⎝%s⎠ ▏🭰🭱🭲🭳🭴🭵▕ 🭒 🭓 🭔 🭕 🭖 🭧 🭜 🭟 🭠 🭡 🭞 🭝 🭧🭜 🭕🭠 🭖🭡 🭔🭟 🭓🭞 🭒🭝 🭪🭨 \n", indent, "█🮆🮅🮄▀🮃🮂▔ "); } fprintf(debugfp, "%sbackground of 0x%06lx is %sconsidered transparent\n", indent, ti->bg_collides_default & 0xfffffful, (ti->bg_collides_default & 0x01000000) ? "" : "not ");