From 3b751d86e5250df530cb694c6bbe44829006c013 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Sun, 16 Jul 2023 21:53:30 +0100 Subject: Extra life at 10,000 Also with special sound. --- src/sound.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/sound.c') diff --git a/src/sound.c b/src/sound.c index c9e3b1c..aeeeeb8 100644 --- a/src/sound.c +++ b/src/sound.c @@ -12,7 +12,7 @@ typedef struct size_t len; } Efx; -#define EFX_CNT 7 +#define EFX_CNT 8 static Efx efx[EFX_CNT] = { @@ -21,6 +21,7 @@ static Efx efx[EFX_CNT] = { NULL, (const char *)binary_warp_efx_start, (size_t)&binary_warp_efx_size}, { NULL, (const char *)binary_pickup_efx_start, (size_t)&binary_pickup_efx_size}, { NULL, (const char *)binary_time_efx_start, (size_t)&binary_time_efx_size}, + { NULL, (const char *)binary_oneup_efx_start, (size_t)&binary_oneup_efx_size}, { NULL, (const char *)binary_hit_efx_start, (size_t)&binary_hit_efx_size}, { NULL, (const char *)binary_death_efx_start, (size_t)&binary_death_efx_size}, }; -- cgit v1.2.3