diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-15 22:46:39 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-15 22:46:39 +0100 |
commit | ffb12588e9af6435306a1cdfabc1bf67e8e33dfd (patch) | |
tree | 12ce6c979f395a8c41529229ea55bd86db4d6a5a /src/game.c | |
parent | 941c43575d1e335371a6a109222fe542136d442a (diff) | |
download | gold-mine-run-ffb12588e9af6435306a1cdfabc1bf67e8e33dfd.tar.gz gold-mine-run-ffb12588e9af6435306a1cdfabc1bf67e8e33dfd.zip |
Stage 10
Diffstat (limited to 'src/game.c')
-rw-r--r-- | src/game.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -50,12 +50,12 @@ static Entity *tmonster; /* 0-index */ #define START_STAGE 0 -#define STAGES_LEN 9 +#define STAGES_LEN 10 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_stage09_start, binary_stage10_start }; static void hud_render() |