summaryrefslogtreecommitdiff
path: root/src/code/audio_effects.c
diff options
context:
space:
mode:
authorEllipticEllipsis <elliptic.ellipsis@gmail.com>2022-06-12 23:58:13 +0100
committerGitHub <noreply@github.com>2022-06-12 18:58:13 -0400
commitbe57b6bf4c8164f3ce2bc00fff3ca449242f72a3 (patch)
tree29e9e45efc08f6ad33cd4afa1e9fd42a5bedd05a /src/code/audio_effects.c
parent826924afeae9c336f0783b502b6d36fc71c06a66 (diff)
Document flag for swinging bottle (#1272)
* Document flag for swinging bottle * Add bug, minor documentation to func_8084ECA4 * Update comments * Add newline to z64cutscene_commands.h * Review
Diffstat (limited to 'src/code/audio_effects.c')
-rw-r--r--src/code/audio_effects.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/audio_effects.c b/src/code/audio_effects.c
index 5e71318dd..241e99c02 100644
--- a/src/code/audio_effects.c
+++ b/src/code/audio_effects.c
@@ -242,8 +242,8 @@ f32 Audio_AdsrUpdate(AdsrState* adsr) {
case ADSR_STATE_START_LOOP:
adsr->envIndex = 0;
adsr->action.s.state = ADSR_STATE_LOOP;
- FALLTHROUGH;
retry:;
+ FALLTHROUGH;
case ADSR_STATE_LOOP:
adsr->delay = adsr->envelope[adsr->envIndex].delay;
switch (adsr->delay) {