diff options
author | gAlfonso-bit <83477269+gAlfonso-bit@users.noreply.github.com> | 2021-05-12 16:54:41 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2021-05-13 11:23:11 -0500 |
commit | 7d3f25dfb0acf3902a41a4312c6ea45f325bf6b1 (patch) | |
tree | a57316dac343fc68a7868f49ef003386776d394f | |
parent | 65fd3342562106c5a9ffa93f6b46a02c7ebe9ef5 (diff) |
Change IsPokemonCryPlaying to bool32
Better reflects its usage
-rw-r--r-- | berry_fix/payload/include/gba/m4a_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/berry_fix/payload/include/gba/m4a_internal.h b/berry_fix/payload/include/gba/m4a_internal.h index 339a0774e..1aca67585 100644 --- a/berry_fix/payload/include/gba/m4a_internal.h +++ b/berry_fix/payload/include/gba/m4a_internal.h @@ -419,7 +419,7 @@ void SetPokemonCryPitch(s16 val); void SetPokemonCryLength(u16 val); void SetPokemonCryRelease(u8 val); void SetPokemonCryProgress(u32 val); -int IsPokemonCryPlaying(struct MusicPlayerInfo *mplayInfo); +bool32 IsPokemonCryPlaying(struct MusicPlayerInfo *mplayInfo); void SetPokemonCryChorus(s8 val); void SetPokemonCryStereo(u32 val); void SetPokemonCryPriority(u8 val); |