Synced sound.c
This commit is contained in:
@@ -33,6 +33,7 @@
|
||||
#include "battle_interface.h"
|
||||
#include "mon_markings.h"
|
||||
#include "pokemon_storage_system.h"
|
||||
#include "constants/sound.h"
|
||||
|
||||
// needs conflicting header to match (curIndex is s8 in the function, but has to be defined as u8 here)
|
||||
extern s16 SeekToNextMonInBox(struct BoxPokemon * boxMons, u8 curIndex, u8 maxIndex, u8 flags);
|
||||
@@ -5181,9 +5182,9 @@ static void PokeSum_TryPlayMonCry(void)
|
||||
if (!GetMonData(&sMonSummaryScreen->currentMon, MON_DATA_IS_EGG))
|
||||
{
|
||||
if (ShouldPlayNormalPokeCry(&sMonSummaryScreen->currentMon) == TRUE)
|
||||
PlayCry3(GetMonData(&sMonSummaryScreen->currentMon, MON_DATA_SPECIES2), 0, 0);
|
||||
PlayCry_ByMode(GetMonData(&sMonSummaryScreen->currentMon, MON_DATA_SPECIES2), 0, CRY_MODE_NORMAL);
|
||||
else
|
||||
PlayCry3(GetMonData(&sMonSummaryScreen->currentMon, MON_DATA_SPECIES2), 0, 11);
|
||||
PlayCry_ByMode(GetMonData(&sMonSummaryScreen->currentMon, MON_DATA_SPECIES2), 0, CRY_MODE_WEAK);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user