summaryrefslogtreecommitdiff
path: root/src/pokeblock.c
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2020-08-10 23:50:49 -0400
committerGriffinR <griffin.g.richards@gmail.com>2020-08-11 00:23:28 -0400
commitcc4255d4c064384cf3516441e340b6377c99de3d (patch)
treecb12985a80967c095a2bcf914d9841605ffd8bdc /src/pokeblock.c
parent8b95e1964b174d664abcb5864549feea83cfebfe (diff)
Add some charmap constant usage
Diffstat (limited to 'src/pokeblock.c')
-rw-r--r--src/pokeblock.c4
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);