diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-01-15 19:26:47 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-01-15 19:29:29 -0500 |
commit | 884b46a5dc26ae9e0c0abcf7e0d69c1122a30e22 (patch) | |
tree | 5d025974c1b08fcbfff522550650a8c7227ac414 /src/sound.c | |
parent | 153858af6035015ca8aae24f44640ce7f25679bc (diff) |
Review changes for #225
Diffstat (limited to 'src/sound.c')
-rw-r--r-- | src/sound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound.c b/src/sound.c index 5e8215bc2..ebd755838 100644 --- a/src/sound.c +++ b/src/sound.c @@ -362,7 +362,7 @@ void PlayCry4(u16 species, s8 pan, u8 mode) void PlayCry7(u16 species, u8 mode) // exclusive to FR/LG { - if((u8)(gQuestLogState - 2) >= 2) + if (gQuestLogState != 2 && gQuestLogState != 3) { m4aMPlayVolumeControl(&gMPlayInfo_BGM, 0xFFFF, 85); PlayCryInternal(species, 0, CRY_VOLUME, 10, mode); |