Remove redundant parens
This commit is contained in:
parent
f8f6575360
commit
4bf43311f0
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue