diff options
Diffstat (limited to 'src/bard_music.c')
-rw-r--r-- | src/bard_music.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bard_music.c b/src/bard_music.c index 4c28233c2..6c2578071 100644 --- a/src/bard_music.c +++ b/src/bard_music.c @@ -54,7 +54,7 @@ void GetWordPhonemes(struct BardSong *song, u16 word) for (i = 0; i < 6; i ++) { sound = &song->sound[i]; - if (sound->var00 != INVALID_U8) + if (sound->var00 != 0xFF) { song->phonemes[i].length = sound->var01 + gBardSoundLengthTable[sound->var00]; song->phonemes[i].pitch = CalcWordPitch(word + 30, i); |