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/game.c | |
parent | d587895b25408dd904753e24548f4e92eafd1010 (diff) | |
download | gold-mine-run-bd936662e9b2e33a0d538639fa61ec7a5fbe176e.tar.gz gold-mine-run-bd936662e9b2e33a0d538639fa61ec7a5fbe176e.zip |
Added starts 3 and 4
Diffstat (limited to 'src/game.c')
-rw-r--r-- | src/game.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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() |