Update IsPokemonCryPlaying
This commit is contained in:
parent
7d3f25dfb0
commit
3e15a3ef8f
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue