diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-11 23:25:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-11 23:25:54 -0400 |
commit | 2b412ac7e3b67b3798638b784e874f450e6d2f7e (patch) | |
tree | cb12985a80967c095a2bcf914d9841605ffd8bdc /src/pokedex.c | |
parent | 8b95e1964b174d664abcb5864549feea83cfebfe (diff) | |
parent | cc4255d4c064384cf3516441e340b6377c99de3d (diff) |
Merge pull request #1130 from GriffinRichards/fix-extrchar
Add some charmap constant usage
Diffstat (limited to 'src/pokedex.c')
-rw-r--r-- | src/pokedex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pokedex.c b/src/pokedex.c index 777cc52cd..2a6a33633 100644 --- a/src/pokedex.c +++ b/src/pokedex.c @@ -4145,7 +4145,7 @@ static void PrintMonHeight(u16 height, u8 left, u8 top) inches = (inches - (feet * 120)) / 10; buffer[i++] = EXT_CTRL_CODE_BEGIN; - buffer[i++] = 0x13; + buffer[i++] = EXT_CTRL_CODE_CLEAR_TO; if (feet / 10 == 0) { buffer[i++] = 18; |