diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-02-22 12:12:35 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-02-24 11:03:45 -0500 |
commit | c6141fea831a30a0d2de24b3c02375a01014ec97 (patch) | |
tree | ad42905d6bb2ebae0fecce7531e85283746bfa08 /src/tv.c | |
parent | 1cac608dbedeaaccd2446891c38a71f10230bfc0 (diff) |
Document easy chat
Diffstat (limited to 'src/tv.c')
-rw-r--r-- | src/tv.c | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -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]); } |