Merge pull request #10 from Bubble791/chinese_branch

Update battle_message.c
This commit is contained in:
Bubble 2025-04-04 22:15:37 +08:00 committed by GitHub
commit 5d2e82fadb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3142,10 +3142,7 @@ u32 BattleStringExpandPlaceholders(const u8 *src, u8 *dst, u32 dstSize)
{
while (*toCpy != EOS)
{
if (*toCpy == CHAR_SPACE)
dst[dstID] = CHAR_NBSP;
else
dst[dstID] = *toCpy;
dst[dstID] = *toCpy;
dstID++;
toCpy++;
}