diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-03 21:46:05 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-03 21:46:05 +0100 |
commit | a90356ca753b0abba557dfda3085d84ffc110162 (patch) | |
tree | a2784abfd9d4e3bbc0168005d07dae9f4e26c363 /src/sound.c | |
parent | 4ef8cf8b3d9ad5235aa858a68f70a8aaf2b356da (diff) | |
download | gold-mine-run-a90356ca753b0abba557dfda3085d84ffc110162.tar.gz gold-mine-run-a90356ca753b0abba557dfda3085d84ffc110162.zip |
Make the pickup have more priority than the warp
Diffstat (limited to 'src/sound.c')
-rw-r--r-- | src/sound.c | 2 |
1 files changed, 1 insertions, 1 deletions
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}, |