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/easy_chat.c | |
parent | de274dcb078f15d4c4266444c63c4629071b130a (diff) |
Removed unused parentheses
Diffstat (limited to 'src/easy_chat.c')
-rw-r--r-- | src/easy_chat.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/easy_chat.c b/src/easy_chat.c index 0ec4d32fd..e08f0bb75 100644 --- a/src/easy_chat.c +++ b/src/easy_chat.c @@ -1614,26 +1614,26 @@ static u16 sub_811ACDC(void) { return sub_811B150(); } - else if (JOY_NEW(START_BUTTON)) + if (JOY_NEW(START_BUTTON)) { return sub_811B1B4(); } - else if (JOY_NEW(DPAD_UP)) + if (JOY_NEW(DPAD_UP)) { sEasyChatScreen->mainCursorRow--; break; } - else if (JOY_NEW(DPAD_LEFT)) + if (JOY_NEW(DPAD_LEFT)) { sEasyChatScreen->mainCursorColumn--; break; } - else if (JOY_NEW(DPAD_DOWN)) + if (JOY_NEW(DPAD_DOWN)) { sEasyChatScreen->mainCursorRow = 0; break; } - else if (JOY_NEW(DPAD_RIGHT)) + if (JOY_NEW(DPAD_RIGHT)) { sEasyChatScreen->mainCursorColumn++; break; |