[highcon] undo unwanted experimental background change

This commit is contained in:
nick black 2021-11-21 20:51:23 -05:00
parent 15e768b4d1
commit 81475827b0
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -104,7 +104,7 @@ int highcontrast_demo(struct notcurses* nc){
const int l = totcells + dimx - offset; const int l = totcells + dimx - offset;
ncplane_at_yx_cell(n, f / dimx, f % dimx, &c); ncplane_at_yx_cell(n, f / dimx, f % dimx, &c);
nccell_set_fg_rgb(&c, 0x004000 + (16 * offset)); nccell_set_fg_rgb(&c, 0x004000 + (16 * offset));
nccell_set_bg_default(&c); nccell_set_bg_rgb(&c, 0);
nccell_set_fg_alpha(&c, NCALPHA_OPAQUE); nccell_set_fg_alpha(&c, NCALPHA_OPAQUE);
if(ncplane_putc_yx(n, f / dimx, f % dimx, &c) < 0){ if(ncplane_putc_yx(n, f / dimx, f % dimx, &c) < 0){
goto err; goto err;