diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-10 17:09:17 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-10 17:09:17 -0400 |
commit | 4bf43311f0b2cf78cb69b71485fce61ed8c21786 (patch) | |
tree | ff008e38960b47c03adbbac18e9910735ef67384 /src | |
parent | f8f6575360e6ef4c27a5b65dcbda342ec9665f32 (diff) |
Remove redundant parens
Diffstat (limited to 'src')
-rw-r--r-- | src/roulette.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/roulette.c b/src/roulette.c index b3e07233a..4ca892912 100644 --- a/src/roulette.c +++ b/src/roulette.c @@ -1515,7 +1515,7 @@ static void Task_HandleBetGridInput(u8 taskId) if (JOY_NEW(A_BUTTON)) { - if ((sRoulette->hitFlags & sGridSelections[gTasks[taskId].tSelectionId].flag)) + if (sRoulette->hitFlags & sGridSelections[gTasks[taskId].tSelectionId].flag) { // Ball has already landed on this space PlaySE(SE_BOO); |