summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/unk_text_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unk_text_util.c b/src/unk_text_util.c
index 825b333bb..2773522b2 100644
--- a/src/unk_text_util.c
+++ b/src/unk_text_util.c
@@ -32,7 +32,7 @@ u8 *UnkTextUtil_StringExpandPlaceholders(u8 *dest, const u8 *src)
{
while (*src != EOS)
{
- if (*src != 0xF7)
+ if (*src != CHAR_SPECIAL_F7)
{
*dest++ = *src++;
}