From a90356ca753b0abba557dfda3085d84ffc110162 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Mon, 3 Jul 2023 21:46:05 +0100 Subject: Make the pickup have more priority than the warp --- src/sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sound.c') diff --git a/src/sound.c b/src/sound.c index 4a608cf..4345ed8 100644 --- a/src/sound.c +++ b/src/sound.c @@ -17,8 +17,8 @@ static Efx efx[EFX_CNT] = { { NULL, (const char *)binary_gold_efx_start, (size_t)&binary_gold_efx_size}, { NULL, (const char *)binary_jump_efx_start, (size_t)&binary_jump_efx_size}, - { NULL, (const char *)binary_pickup_efx_start, (size_t)&binary_pickup_efx_size}, { 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_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