From d93bd0a291d0538a40d57d1b90719676236568f1 Mon Sep 17 00:00:00 2001 From: cancel Date: Mon, 17 Dec 2018 23:30:20 +0900 Subject: [PATCH] Cleanup --- tui_main.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tui_main.c b/tui_main.c index fede77a..edf1659 100644 --- a/tui_main.c +++ b/tui_main.c @@ -1794,10 +1794,7 @@ int main(int argc, char** argv) { curs_set(0); // Short delay before triggering escape set_escdelay(1); - // Don't block on calls like getch() -- have it ERR immediately if the user - // hasn't typed anything. That way we can mix other timers in our code, - // instead of being a slave only to terminal input. - // nodelay(stdscr, TRUE); + // Our color init routine term_util_init_colors(); mousemask(ALL_MOUSE_EVENTS | REPORT_MOUSE_POSITION, NULL);