Minor style consistency edit in union_room_chat

This commit is contained in:
PikalaxALT
2020-02-01 10:22:28 -05:00
parent 5ca03c0e32
commit 01fedfa61c
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -914,7 +914,7 @@ static bool32 TypeChatMessage_HandleDPad(void)
{
if (JOY_REPT(DPAD_UP))
{
if (sWork->currentRow)
if (sWork->currentRow > 0)
sWork->currentRow--;
else
sWork->currentRow = sKeyboardPageMaxRow[sWork->currentPage];
@@ -938,7 +938,7 @@ static bool32 TypeChatMessage_HandleDPad(void)
{
if (JOY_REPT(DPAD_LEFT))
{
if (sWork->currentCol)
if (sWork->currentCol > 0)
sWork->currentCol--;
else
sWork->currentCol = 4;