[direct] don't print sprixels to the last line

pull/1549/head
nick black 3 years ago
parent c975bc85fd
commit 0dce453461
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -509,7 +509,7 @@ ncdirect_render_visual(ncdirect* n, ncvisual* ncv, ncblitter_e blitfxn,
disprows = dimy * encoding_y_scale(&n->tcache, bset);
}else{
dispcols = dimx * n->tcache.cellpixx;
disprows = dimy * n->tcache.cellpixy;
disprows = (dimy - 1) * n->tcache.cellpixy;
}
if(scale == NCSCALE_SCALE || scale == NCSCALE_SCALE_HIRES){
scale_visual(ncv, &disprows, &dispcols);

Loading…
Cancel
Save