aboutsummaryrefslogtreecommitdiff
path: root/src/game.c
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-12-18 12:06:26 -0700
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-12-18 12:06:26 -0700
commit2016fd3e8a39205843f770df7e80df27f720abad (patch)
tree926eebf9d5c332f6827a88ed35fba24330ddebef /src/game.c
parentef8583564b648f6fdda73711a18b469416c1fdfc (diff)
Health from last level now saved
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 ef61d45..594646d 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, 11);
+ startLevel(game, &game->levels, 0);
}
void closeGame(Game * game) {