diff options
author | PokeCodec <67983839+PokeCodec@users.noreply.github.com> | 2020-09-05 10:01:21 -0400 |
---|---|---|
committer | PokeCodec <67983839+PokeCodec@users.noreply.github.com> | 2020-09-05 10:01:21 -0400 |
commit | 3e25d9e5a2e0346a53b1bfdf9e14f98e14cceb21 (patch) | |
tree | 995eed5e53b8faf2088066744281a8f34517c07e /src/pokemon_summary_screen.c | |
parent | de274dcb078f15d4c4266444c63c4629071b130a (diff) |
Removed unused parentheses
Diffstat (limited to 'src/pokemon_summary_screen.c')
-rw-r--r-- | src/pokemon_summary_screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokemon_summary_screen.c b/src/pokemon_summary_screen.c index 9b8e4ef9e..bfd849229 100644 --- a/src/pokemon_summary_screen.c +++ b/src/pokemon_summary_screen.c @@ -1505,11 +1505,11 @@ static void Task_HandleInput(u8 taskId) { ChangeSummaryPokemon(taskId, 1); } - else if ((JOY_NEW(DPAD_LEFT)) || GetLRKeysPressed() == MENU_L_PRESSED) + else if (JOY_NEW(DPAD_LEFT) || GetLRKeysPressed() == MENU_L_PRESSED) { ChangePage(taskId, -1); } - else if ((JOY_NEW(DPAD_RIGHT)) || GetLRKeysPressed() == MENU_R_PRESSED) + else if (JOY_NEW(DPAD_RIGHT) || GetLRKeysPressed() == MENU_R_PRESSED) { ChangePage(taskId, 1); } |