diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-15 22:13:06 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-15 22:13:06 +0100 |
commit | 41044ad3f9ee7430963e81ad38bd1cf27c714d21 (patch) | |
tree | b0011a6dcac1f221f3fc7be3653a1903bf21baac /src | |
parent | 9c910552f551ec9bff014c6b2741756283ccb506 (diff) | |
download | gold-mine-run-41044ad3f9ee7430963e81ad38bd1cf27c714d21.tar.gz gold-mine-run-41044ad3f9ee7430963e81ad38bd1cf27c714d21.zip |
Stage 9
Diffstat (limited to 'src')
-rw-r--r-- | src/data.h | 1 | ||||
-rw-r--r-- | src/game.c | 5 |
2 files changed, 4 insertions, 2 deletions
@@ -22,6 +22,7 @@ extern const uint8_t binary_stage05_start[]; extern const uint8_t binary_stage06_start[]; extern const uint8_t binary_stage07_start[]; extern const uint8_t binary_stage08_start[]; +extern const uint8_t binary_stage09_start[]; /* sound */ extern const uint8_t binary_music_start[]; @@ -50,11 +50,12 @@ static Entity *tmonster; /* 0-index */ #define START_STAGE 0 -#define STAGES_LEN 8 +#define STAGES_LEN 9 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_stage05_start, binary_stage06_start, binary_stage07_start, binary_stage08_start, + binary_stage09_start }; static void hud_render() |