mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-18 03:25:55 +00:00
scroll/cjkscroll: remove unused variables
This commit is contained in:
parent
2e449addad
commit
d904b2b8c1
@ -8,7 +8,7 @@ int main(void){
|
||||
if(nc == NULL){
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
int dimy, dimx, y, x;
|
||||
int dimy, dimx;
|
||||
struct ncplane* n = notcurses_stddim_yx(nc, &dimy, &dimx);
|
||||
wchar_t wc = 0x4e00;
|
||||
ncplane_set_scrolling(n, true);
|
||||
|
@ -8,7 +8,7 @@ int main(void){
|
||||
if(nc == NULL){
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
int dimy, dimx, y, x;
|
||||
int dimy, dimx;
|
||||
struct ncplane* n = notcurses_stddim_yx(nc, &dimy, &dimx);
|
||||
char c = 'A';
|
||||
ncplane_set_scrolling(n, true);
|
||||
|
Loading…
Reference in New Issue
Block a user