From 5a895556f830ed4bf8d858d5387b8de25e147a6d Mon Sep 17 00:00:00 2001 From: Jeff Moyer Date: Mon, 20 Oct 2008 22:23:58 -0400 Subject: [PATCH] Fix the bug I introduced that caused us not to exit after the victory or defeat loop. --- game.c | 1 + 1 file changed, 1 insertion(+) diff --git a/game.c b/game.c index 078bf6e..03c2180 100644 --- a/game.c +++ b/game.c @@ -179,6 +179,7 @@ void game_run(struct game *game) game_do_victory_loop(game); else game_do_defeat_loop(game); + return; } SDL_Delay(0); -- 2.11.4.GIT