diff options
author | Ryan Tandy <ryan@nardis.ca> | 2019-09-23 10:03:19 -0700 |
---|---|---|
committer | Ryan Tandy <ryan@nardis.ca> | 2019-09-23 10:03:19 -0700 |
commit | 3fc2ba41f7bc7fcf1e51f821b4e07525e0e4a873 (patch) | |
tree | d5c4d0bf478b869b37a0978c8fd5bcfe8491e292 /constants/sfx_constants.asm | |
parent | abee217ce0e29331f1ac691fd1d4edeacf2295f9 (diff) |
Clarify naming of SFX_GET_EGG_* pointers
In game, one receives eggs from the Aide and the Day-care Man, not the
Day-care Lady. SFX `0x96` is used for both. Rename it to reflect it is
not unique to the Day-care.
SFX `0x95` is an alias of the same sound and appears to be unused.
Rename the pointer to clarify that.
Diffstat (limited to 'constants/sfx_constants.asm')
-rw-r--r-- | constants/sfx_constants.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/constants/sfx_constants.asm b/constants/sfx_constants.asm index b58af59ea..113cf5f39 100644 --- a/constants/sfx_constants.asm +++ b/constants/sfx_constants.asm @@ -150,8 +150,8 @@ const SFX_FANFARE_2 ; 92 const SFX_REGISTER_PHONE_NUMBER ; 93 const SFX_3RD_PLACE ; 94 - const SFX_GET_EGG_FROM_DAY_CARE_MAN ; 95 - const SFX_GET_EGG_FROM_DAY_CARE_LADY ; 96 + const SFX_GET_EGG_UNUSED ; 95 + const SFX_GET_EGG ; 96 const SFX_MOVE_DELETED ; 97 const SFX_2ND_PLACE ; 98 const SFX_1ST_PLACE ; 99 |