diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-10 23:50:49 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-11 00:23:28 -0400 |
commit | cc4255d4c064384cf3516441e340b6377c99de3d (patch) | |
tree | cb12985a80967c095a2bcf914d9841605ffd8bdc /src/pokeblock.c | |
parent | 8b95e1964b174d664abcb5864549feea83cfebfe (diff) |
Add some charmap constant usage
Diffstat (limited to 'src/pokeblock.c')
-rw-r--r-- | src/pokeblock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokeblock.c b/src/pokeblock.c index f654e0782..025adf875 100644 --- a/src/pokeblock.c +++ b/src/pokeblock.c @@ -725,8 +725,8 @@ static void PutPokeblockListMenuString(u8 *dst, u16 pkblId) u8 *txtPtr = StringCopy(dst, gPokeblockNames[pkblock->color]); *(txtPtr++) = EXT_CTRL_CODE_BEGIN; - *(txtPtr++) = 0x12; - *(txtPtr++) = 0x57; + *(txtPtr++) = EXT_CTRL_CODE_SKIP; + *(txtPtr++) = 87; ConvertIntToDecimalStringN(gStringVar1, GetHighestPokeblocksFlavorLevel(pkblock), STR_CONV_MODE_LEFT_ALIGN, 3); StringExpandPlaceholders(txtPtr, gText_LvVar1); |