diff options
author | Phlosioneer <mattmdrr2@gmail.com> | 2019-02-21 23:56:22 -0500 |
---|---|---|
committer | Phlosioneer <mattmdrr2@gmail.com> | 2019-02-21 23:56:22 -0500 |
commit | 199863f21f41b3a51d9a6302ca7c3c2864ee1c17 (patch) | |
tree | 85b21e07746b12bd2c392cb33fde5b30bd3e616c /src/naming_screen.c | |
parent | c96f8751cddf1a203bd5f310683ea35bf9cb8db2 (diff) |
Replace more instances of fill values
Diffstat (limited to 'src/naming_screen.c')
-rw-r--r-- | src/naming_screen.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/naming_screen.c b/src/naming_screen.c index a84cbd657..013eb37ca 100644 --- a/src/naming_screen.c +++ b/src/naming_screen.c @@ -1704,7 +1704,9 @@ static const struct TextColorThing sUnkColorStruct = static const u8 sFillValues[3] = { - 0xEE, 0xDD, 0xFF + PALETTE_NUM_TO_FILL_VALUE(0xE), + PALETTE_NUM_TO_FILL_VALUE(0xD), + PALETTE_NUM_TO_FILL_VALUE(0xF) }; static const u8 *const sUnkColors[3] = |