diff options
author | camthesaxman <cameronghall@cox.net> | 2019-07-29 20:44:18 -0500 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2019-07-29 20:44:18 -0500 |
commit | db4af549fdf13cdaca6654f7bb9ef54ecef14359 (patch) | |
tree | c06f2d86efac079db46a3e9767faee1207f7f7e7 /include/battle_message.h | |
parent | b8393b3a799f92e7064c266600607d98f6baf4d9 (diff) |
resolve some Emerald differences
Diffstat (limited to 'include/battle_message.h')
-rw-r--r-- | include/battle_message.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/battle_message.h b/include/battle_message.h index 9c27994ee..97a42bbf8 100644 --- a/include/battle_message.h +++ b/include/battle_message.h @@ -1,6 +1,8 @@ #ifndef GUARD_BATTLE_MESSAGE_H #define GUARD_BATTLE_MESSAGE_H +#define TEXT_BUFF_ARRAY_COUNT 16 + struct StringInfoBattle { u16 currentMove; @@ -154,7 +156,7 @@ struct StringInfoBattle } void BufferStringBattle(u16 stringID); -u32 StrCpyDecodeToDisplayedStringBattle(const u8* src); -u32 StrCpyDecodeBattle(const u8* src, u8* dst); +u32 BattleStringExpandPlaceholdersToDisplayedString(const u8* src); +u32 BattleStringExpandPlaceholders(const u8* src, u8* dst); #endif // GUARD_BATTLE_MESSAGE_H |