Update IsPokemonCryPlaying

This commit is contained in:
gAlfonso-bit 2021-05-12 16:58:34 -04:00 committed by huderlem
parent 7d3f25dfb0
commit 3e15a3ef8f

View File

@ -1703,14 +1703,14 @@ void SetPokemonCryProgress(u32 val)
gPokemonCrySong.unkCmd0DParam = val;
}
int IsPokemonCryPlaying(struct MusicPlayerInfo *mplayInfo)
bool32 IsPokemonCryPlaying(struct MusicPlayerInfo *mplayInfo)
{
struct MusicPlayerTrack *track = mplayInfo->tracks;
if (track->chan && track->chan->track == track)
return 1;
return TRUE;
else
return 0;
return FALSE;
}
void SetPokemonCryChorus(s8 val)