aboutsummaryrefslogtreecommitdiff
path: root/src/sound.c
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2023-07-16 21:53:30 +0100
committerJuan J. Martinez <jjm@usebox.net>2023-07-16 21:53:30 +0100
commit3b751d86e5250df530cb694c6bbe44829006c013 (patch)
tree2790f4dc41b816d3c7ec965693deff646d57af28 /src/sound.c
parenta123a75eae0c48402f8a737fa94a63e2e47fbb31 (diff)
downloadgold-mine-run-3b751d86e5250df530cb694c6bbe44829006c013.tar.gz
gold-mine-run-3b751d86e5250df530cb694c6bbe44829006c013.zip
Extra life at 10,000
Also with special sound.
Diffstat (limited to 'src/sound.c')
-rw-r--r--src/sound.c3
1 files changed, 2 insertions, 1 deletions
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},
};