From 5d49892c691b13a24f12b59cfbcc78cbdb9de958 Mon Sep 17 00:00:00 2001 From: nick black Date: Tue, 16 Mar 2021 18:02:05 -0400 Subject: [PATCH] [keller] suffix blitter name with 'blitter' --- src/demo/keller.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/demo/keller.c b/src/demo/keller.c index 69838650f..bd138882f 100644 --- a/src/demo/keller.c +++ b/src/demo/keller.c @@ -52,7 +52,7 @@ visualize(struct notcurses* nc, struct ncvisual* ncv){ "%d:%d pixels -> cell", scalex, scaley); } const char* name = notcurses_str_blitter(bs[i]); - ncplane_putstr_aligned(stdn, ncplane_dim_y(stdn) / 2 - 3, NCALIGN_CENTER, name); + ncplane_printf_aligned(stdn, ncplane_dim_y(stdn) / 2 - 3, NCALIGN_CENTER, "%sblitter", name); int ret = demo_render(nc); if(ret){ return ret;