diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-10 11:59:15 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-11-10 11:59:15 -0500 |
commit | 342b7da5d36460bb5780ea60da4b6b5be46ddc38 (patch) | |
tree | b1aedb56d575e2c880382bb9397916d99d270cc4 /src/sound.c | |
parent | c4169cfd290dcf7703b79debd66142b277af5613 (diff) |
Fix CRY_MODE_ECHO
Diffstat (limited to 'src/sound.c')
-rw-r--r-- | src/sound.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound.c b/src/sound.c index c2a8c9e8c..ad9993b54 100644 --- a/src/sound.c +++ b/src/sound.c @@ -406,7 +406,7 @@ void PlayCryInternal(u16 species, s8 pan, s8 volume, u8 priority, u8 mode) chorus = 20; volume = 90; break; - case CRY_MODE_ECHO_END: + case CRY_MODE_ECHO_START: length = 25; reverse = TRUE; release = 100; @@ -418,7 +418,7 @@ void PlayCryInternal(u16 species, s8 pan, s8 volume, u8 priority, u8 mode) release = 200; pitch = 14440; break; - case CRY_MODE_ECHO_START: + case CRY_MODE_ECHO_END: release = 220; pitch = 15555; chorus = 192; |