Fix custom level reverb

This commit is contained in:
Agent X 2024-02-15 17:25:29 -05:00
parent f0ddb4f5cd
commit 38745d74e5
1 changed files with 1 additions and 1 deletions

View File

@ -1334,7 +1334,7 @@ static u8 get_sound_reverb(UNUSED u8 bank, UNUSED u8 soundIndex, u8 channelIndex
area = 0;
} else {
#endif
level = (gCurrLevelNum > LEVEL_MAX ? LEVEL_MAX : gCurrLevelNum);
level = gCurrLevelNum;
area = gCurrAreaIndex - 1;
if (area > 2) {
area = 2;