mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
Fix clang compilation error due to a fallthrough (#1271)
This commit is contained in:
parent
a33965c1d0
commit
826924afea
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue