Document easy chat

This commit is contained in:
GriffinR
2021-02-22 12:12:35 -05:00
parent 1cac608dbe
commit c6141fea83
36 changed files with 3056 additions and 2787 deletions
+4 -7
View File
@@ -1016,7 +1016,7 @@ bool8 IsTVShowInSearchOfTrainersAiring(void)
bool8 GabbyAndTyGetLastQuote(void)
{
if (gSaveBlock1Ptr->gabbyAndTyData.quote[0] == 0xFFFF)
if (gSaveBlock1Ptr->gabbyAndTyData.quote[0] == EC_EMPTY_WORD)
{
return FALSE;
}
@@ -3299,14 +3299,11 @@ void TV_FanClubLetter_RandomWordToStringVar3(TVShow *show)
while (TRUE)
{
if (i == 6)
{
i = 0;
}
if (show->fanclubLetter.words[i] != 0xFFFF)
{
if (show->fanclubLetter.words[i] != EC_EMPTY_WORD)
break;
}
i ++;
i++;
}
CopyEasyChatWord(gStringVar3, show->fanclubLetter.words[i]);
}