diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sound.c | 2 | ||||
-rw-r--r-- | src/sound.h | 2 |
2 files changed, 2 insertions, 2 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}, diff --git a/src/sound.h b/src/sound.h index b51a8ba..be4df88 100644 --- a/src/sound.h +++ b/src/sound.h @@ -4,8 +4,8 @@ enum { EFX_GOLD = 0, EFX_JUMP, - EFX_PICKUP, EFX_WARP, + EFX_PICKUP, EFX_TIME, EFX_HIT, EFX_DEATH, |