aboutsummaryrefslogtreecommitdiff
path: root/src/game.c
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-11-17 19:52:32 -0700
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-11-17 19:52:32 -0700
commitd3f744321e1e114796391d0d18eb6ffd36de6e34 (patch)
treeb760d7c148ff98ebd6e4a38de52b81aed03ec6ae /src/game.c
parent6e10d35ca6dc47b2b3ad47dbce0f5c6245a8da72 (diff)
Working on level 2
Diffstat (limited to 'src/game.c')
-rw-r--r--src/game.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.c b/src/game.c
index 594646d..c1c5616 100644
--- a/src/game.c
+++ b/src/game.c
@@ -33,7 +33,7 @@ void initGame(Game * game) {
// Levels.
initLevels(&game->levels);
- startLevel(game, &game->levels, 0);
+ startLevel(game, &game->levels, 1);
}
void closeGame(Game * game) {