From 57f962399dd41289f5122451bfdfb76ad4ddcc58 Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 25 Jul 2021 04:24:37 -0400 Subject: [PATCH] statepixel: use black foreground so we can read errors --- src/poc/statepixel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/poc/statepixel.c b/src/poc/statepixel.c index dd2432887..1d67971aa 100644 --- a/src/poc/statepixel.c +++ b/src/poc/statepixel.c @@ -62,7 +62,7 @@ handle(struct notcurses* nc, const char* fn){ ncvisual_destroy(ncv); return -1; } - uint64_t channels = NCCHANNELS_INITIALIZER(0xff, 0xff, 0xff, 0xff, 0xff, 0xff); + uint64_t channels = NCCHANNELS_INITIALIZER(0, 0, 0, 0xff, 0xff, 0xff); ncplane_set_base(t, " ", 0, channels); notcurses_render(nc); clock_nanosleep(CLOCK_MONOTONIC, 0, &ds, NULL);