diff options
-rw-r--r-- | src/game.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,4 +1,5 @@ #include <stdlib.h> +#include <unistd.h> #include <curses.h> #include "game.h" @@ -52,6 +53,7 @@ static void wait(struct game *g) { g->running = 1; + usleep(10000); } static void |