From f750dfefed277f1c351ea8a61c56a2ea168430b1 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Mon, 20 May 2013 21:23:08 -0400 Subject: Don't set the running flag in wait(). --- diff --git a/src/game.c b/src/game.c index 7eb4712..8342166 100644 --- a/src/game.c +++ b/src/game.c @@ -53,7 +53,7 @@ run_game(struct game *g) static void wait(struct game *g) { - g->running = 1; + ++g; usleep(10000); } -- cgit v0.9.1