diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-15 15:14:15 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-15 15:14:15 +0100 |
commit | bd936662e9b2e33a0d538639fa61ec7a5fbe176e (patch) | |
tree | 9091d8f014277f17ac4fc1e7c896e30ef2246eb2 /src | |
parent | d587895b25408dd904753e24548f4e92eafd1010 (diff) | |
download | gold-mine-run-bd936662e9b2e33a0d538639fa61ec7a5fbe176e.tar.gz gold-mine-run-bd936662e9b2e33a0d538639fa61ec7a5fbe176e.zip |
Added starts 3 and 4
Diffstat (limited to 'src')
-rw-r--r-- | src/data.h | 1 | ||||
-rw-r--r-- | src/game.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -17,6 +17,7 @@ extern const uint8_t binary_intro_start[]; extern const uint8_t binary_stage01_start[]; extern const uint8_t binary_stage02_start[]; extern const uint8_t binary_stage03_start[]; +extern const uint8_t binary_stage04_start[]; /* sound */ extern const uint8_t binary_music_start[]; @@ -48,10 +48,10 @@ static uint8_t gameover; static uint8_t pause; static Entity *tmonster; -#define STAGES_LEN 2 +#define STAGES_LEN 4 static const uint8_t *stages[STAGES_LEN] = { - binary_stage01_start, binary_stage02_start, + binary_stage01_start, binary_stage02_start, binary_stage03_start, binary_stage04_start }; static void hud_render() |