diff options
| author | Roman971 <32455037+Roman971@users.noreply.github.com> | 2022-06-11 16:19:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-11 10:19:34 -0400 |
| commit | 826924afeae9c336f0783b502b6d36fc71c06a66 (patch) | |
| tree | 2daef884fa7c573c62174d9cbe58f23256886244 /src/code | |
| parent | a33965c1d036ef67d7d26a6d6dca456c4042392d (diff) | |
Fix clang compilation error due to a fallthrough (#1271)
Diffstat (limited to 'src/code')
| -rw-r--r-- | src/code/audio_effects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/audio_effects.c b/src/code/audio_effects.c index 9a6d1884a..5e71318dd 100644 --- a/src/code/audio_effects.c +++ b/src/code/audio_effects.c @@ -243,7 +243,7 @@ f32 Audio_AdsrUpdate(AdsrState* adsr) { adsr->envIndex = 0; adsr->action.s.state = ADSR_STATE_LOOP; FALLTHROUGH; - retry: + retry:; case ADSR_STATE_LOOP: adsr->delay = adsr->envelope[adsr->envIndex].delay; switch (adsr->delay) { |
