diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-01-25 21:00:51 -0500 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-01-25 21:00:51 -0500 |
commit | 52fbc43d73995977aa8f6c45405a91c68d515061 (patch) | |
tree | 7d9e646e984522e7eb9b3d0752e8277c34070eb6 /src/union_room_chat.c | |
parent | 0ebdbcfd5b1d352d37f5806943b124e915cbfe8b (diff) |
Address review comments
Diffstat (limited to 'src/union_room_chat.c')
-rw-r--r-- | src/union_room_chat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/union_room_chat.c b/src/union_room_chat.c index f4a192b35..d672c6b68 100644 --- a/src/union_room_chat.c +++ b/src/union_room_chat.c @@ -405,7 +405,7 @@ static void ChatEntryRoutine_HandleInput(void) static void ChatEntryRoutine_Switch(void) { s16 input; - int shouldSwitchPages; + bool32 shouldSwitchPages; switch (sWork->routineState) { @@ -423,9 +423,9 @@ static void ChatEntryRoutine_Switch(void) { default: UnionRoomChat_StartDisplaySubtask(CHATDISPLAYROUTINE_HIDEKBSWAPMENU, 0); - shouldSwitchPages = 1; + shouldSwitchPages = TRUE; if (sWork->currentPage == input || input > UNION_ROOM_KB_PAGE_COUNT) - shouldSwitchPages = 0; + shouldSwitchPages = FALSE; break; case MENU_NOTHING_CHOSEN: if (JOY_NEW(SELECT_BUTTON)) |