From 402ac0986f9ec6f93de469d68801beef0b353292 Mon Sep 17 00:00:00 2001 From: gheskett Date: Wed, 25 Aug 2021 21:17:59 -0500 Subject: [PATCH] Remove unnecessary vibrato restriction for JP and US audio --- src/audio/effects.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/audio/effects.c b/src/audio/effects.c index c6f897af..71065168 100644 --- a/src/audio/effects.c +++ b/src/audio/effects.c @@ -292,6 +292,7 @@ void note_vibrato_init(struct Note *note) { vib = ¬e->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;