interp PoC: don't use NCOPTION_DRAIN_INPUT

pull/2197/head
nick black 3 years ago
parent 5c82d5b849
commit 37fb92dba3

@ -95,7 +95,6 @@ interp(struct notcurses* nc, int cellpixy, int cellpixx){
int main(void){ int main(void){
struct notcurses_options nopts = { struct notcurses_options nopts = {
// .loglevel = NCLOGLEVEL_TRACE, // .loglevel = NCLOGLEVEL_TRACE,
.flags = NCOPTION_DRAIN_INPUT,
}; };
struct notcurses* nc = notcurses_init(&nopts, NULL); struct notcurses* nc = notcurses_init(&nopts, NULL);
if(nc == NULL){ if(nc == NULL){
@ -108,7 +107,7 @@ int main(void){
goto err; goto err;
} }
ncinput ni; ncinput ni;
notcurses_getc_blocking(nc, &ni); uint32_t id = notcurses_getc_blocking(nc, &ni);
notcurses_stop(nc); notcurses_stop(nc);
return EXIT_SUCCESS; return EXIT_SUCCESS;

Loading…
Cancel
Save