summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/game.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.c b/src/game.c
index aca77ea..cce4497 100644
--- a/src/game.c
+++ b/src/game.c
@@ -42,10 +42,10 @@ run_game(struct game *g)
g->running = 1;
while (g->running) {
- wait(g);
input(g);
update(g);
draw(g);
+ wait(g);
}
}