From bf565300d6a71975f120097028bcba7065ea7a4d Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Sun, 16 Jul 2023 22:21:51 +0100 Subject: Stage 11 --- src/game.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/game.c') diff --git a/src/game.c b/src/game.c index c18b9ad..70de080 100644 --- a/src/game.c +++ b/src/game.c @@ -53,12 +53,12 @@ static Entity *tmonster; /* 0-index */ #define START_STAGE 0 -#define STAGES_LEN 10 +#define STAGES_LEN 11 static const uint8_t *stages[STAGES_LEN] = { binary_stage01_start, binary_stage02_start, binary_stage03_start, binary_stage04_start, binary_stage05_start, binary_stage06_start, binary_stage07_start, binary_stage08_start, - binary_stage09_start, binary_stage10_start + binary_stage09_start, binary_stage10_start, binary_stage11_start }; static void hud_render() @@ -317,6 +317,7 @@ next_stage: tmonster = NULL; entities_warp_out_all(); sound_play_efx(EFX_WARP); + player_stageclear(); stageclear = STAGECLEAR_DELAY; } -- cgit v1.2.3