diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-04-09 23:05:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 23:05:56 -0400 |
commit | 5e82db8dc3f10229635d6825fbcfc742740043f2 (patch) | |
tree | 7009cc96079986ae10b6400011f07a099fb2c5a6 /src/credits.c | |
parent | 677b4fc394516deab5b5c86c94a2a1443cb52151 (diff) | |
parent | 3e725272fc8b8f2ea825783771d54104d1f25e82 (diff) |
Merge pull request #1399 from Kurausukun/graey
Standardize Spelling of "Gray"
Diffstat (limited to 'src/credits.c')
-rw-r--r-- | src/credits.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/credits.c b/src/credits.c index f6871aeec..b32949754 100644 --- a/src/credits.c +++ b/src/credits.c @@ -391,13 +391,13 @@ static void PrintCreditsText(const u8 *string, u8 y, bool8 isTitle) if (isTitle == TRUE) { - color[1] = TEXT_COLOR_LIGHT_GREY; + color[1] = TEXT_COLOR_LIGHT_GRAY; color[2] = TEXT_COLOR_RED; } else { color[1] = TEXT_COLOR_WHITE; - color[2] = TEXT_COLOR_DARK_GREY; + color[2] = TEXT_COLOR_DARK_GRAY; } x = GetStringCenterAlignXOffsetWithLetterSpacing(1, string, DISPLAY_WIDTH, 1); |