From 35e44d81c5ad0712ee0989ef43e5ea6a9961507b Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 10 Apr 2021 00:48:24 -0400 Subject: [PATCH] caps-rendered: differentiate sixel v kitty --- src/lib/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/debug.c b/src/lib/debug.c index 667444e66..96c920ef3 100644 --- a/src/lib/debug.c +++ b/src/lib/debug.c @@ -28,7 +28,7 @@ tinfo_debug_caps(const tinfo* ti, FILE* debugfp, int rows, int cols, if(!ti->sixel_supported){ fprintf(debugfp, "%sdidn't detect bitmap graphics support\n", indent); }else if(ti->sixel_maxy || ti->color_registers){ - fprintf(debugfp, "%smax bitmap size: %dx%d colorregs: %u\n", + fprintf(debugfp, "%smax sixel size: %dx%d colorregs: %u\n", indent, ti->sixel_maxy, ti->sixel_maxx, ti->color_registers); }else{ fprintf(debugfp, "%sRGBA pixel graphics supported\n", indent);