diff options
Diffstat (limited to 'src/display.c')
| -rw-r--r-- | src/display.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/display.c b/src/display.c index 4504a8f..5d6317b 100644 --- a/src/display.c +++ b/src/display.c @@ -59,6 +59,7 @@ void display_init(void) initscr(); // Start curses mode raw(); // Line buffering disabled keypad(stdscr, true); // We get F1, F2 etc.. + nodelay(stdscr, true); // Non-blocking input noecho(); // Don't echo() while we do getch curs_set(0); // Make the cursor invisible |
