Remove unnecessary vibrato restriction for JP and US audio

This commit is contained in:
gheskett
2021-08-25 21:17:59 -05:00
parent f74feac3a8
commit 402ac0986f

View File

@@ -292,6 +292,7 @@ void note_vibrato_init(struct Note *note) {
vib = &note->vibratoState;
/* This code was probably removed from EU and SH for a reason; probably because it's dumb and makes vibrato harder to use well.
#if defined(VERSION_JP) || defined(VERSION_US)
if (note->parentLayer->seqChannel->vibratoExtentStart == 0
&& note->parentLayer->seqChannel->vibratoExtentTarget == 0
@@ -300,6 +301,7 @@ void note_vibrato_init(struct Note *note) {
return;
}
#endif
*/
vib->active = TRUE;
vib->time = 0;