diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-06-10 13:01:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-10 13:01:55 -0400 |
commit | e308dc8236e53001d02c24dccd265ce89217d2f0 (patch) | |
tree | cd3dd67adc442b9886c5c8ff8086148c37b26799 /src/contest_util.c | |
parent | 7a7ebe18274859619c623a6c58fa1248328f7c5a (diff) | |
parent | 3ed06c2cc269c70c2d9a76bd4a063740de6688cd (diff) |
Merge pull request #1462 from ExpoSeed/pret/more-gray-less-grey
Remove remaining grey and replace with gray
Diffstat (limited to 'src/contest_util.c')
-rw-r--r-- | src/contest_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/contest_util.c b/src/contest_util.c index decbded2c..88ab4a7d2 100644 --- a/src/contest_util.c +++ b/src/contest_util.c @@ -497,7 +497,7 @@ static void LoadContestMonName(u8 monIndex) struct ContestPokemon *mon = &gContestMons[monIndex]; u8 *str = gDisplayedStringBattle; if (monIndex == gContestPlayerMonIndex) - str = StringCopy(gDisplayedStringBattle, gText_ColorDarkGrey); + str = StringCopy(gDisplayedStringBattle, gText_ColorDarkGray); StringCopy(str, mon->nickname); AddContestTextPrinter(monIndex, gDisplayedStringBattle, 0); |