From cdf86851545ffd8ec544a3cdf95a3f826bed3591 Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 7 Mar 2021 14:16:16 -0500 Subject: [PATCH] keller: don't use NCSCALE_STRETCH with NCBLIT_PIXEL...yet #1381 --- src/demo/keller.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/demo/keller.c b/src/demo/keller.c index cf794f91c..eac342520 100644 --- a/src/demo/keller.c +++ b/src/demo/keller.c @@ -22,6 +22,9 @@ visualize(struct notcurses* nc, struct ncvisual* ncv){ .n = notcurses_stdplane(nc), .y = 1, }; + if(vopts.blitter == NCBLIT_PIXEL){ + vopts.scaling = NCSCALE_NONE; + } if(ncvisual_render(nc, ncv, &vopts) == NULL){ return -1; }