diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-22 22:10:57 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-22 22:10:57 +0100 |
commit | e54dfef636c877fd990fb208ad5c7a3e532ef3d1 (patch) | |
tree | 9c0b5cf5d649e4147e0359235603b3b2b5fa2d12 /src/game.c | |
parent | a26f820e8f63238ad57e91062e7d0d22195598cd (diff) | |
download | gold-mine-run-e54dfef636c877fd990fb208ad5c7a3e532ef3d1.tar.gz gold-mine-run-e54dfef636c877fd990fb208ad5c7a3e532ef3d1.zip |
Stage 21
Diffstat (limited to 'src/game.c')
-rw-r--r-- | src/game.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -53,7 +53,7 @@ static Entity *tmonster; /* 0-index */ #define START_STAGE 0 -#define STAGES_LEN 20 +#define STAGES_LEN 21 static const uint8_t *stages[STAGES_LEN] = { binary_stage01_start, binary_stage02_start, binary_stage03_start, binary_stage04_start, @@ -61,6 +61,7 @@ static const uint8_t *stages[STAGES_LEN] = { binary_stage09_start, binary_stage10_start, binary_stage11_start, binary_stage12_start, binary_stage13_start, binary_stage14_start, binary_stage15_start, binary_stage16_start, binary_stage17_start, binary_stage18_start, binary_stage19_start, binary_stage20_start, + binary_stage21_start, }; static void hud_render() |