mirror of
https://github.com/pret/pokeemerald.git
synced 2026-05-09 04:13:03 -05:00
Fix broken missing return.
We forgot the return here, but we need it or else it is UB.
This commit is contained in:
parent
61674ecd4b
commit
04feeffeda
|
|
@ -2250,7 +2250,7 @@ void BufferStringBattle(u16 stringID)
|
|||
|
||||
u32 BattleStringExpandPlaceholdersToDisplayedString(const u8 *src)
|
||||
{
|
||||
BattleStringExpandPlaceholders(src, gDisplayedStringBattle);
|
||||
return BattleStringExpandPlaceholders(src, gDisplayedStringBattle);
|
||||
}
|
||||
|
||||
static const u8 *TryGetStatusString(u8 *src)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user