Fix incorrect application logic for rate fallback

Co-Authored-By: peppy <pe@ppy.sh>
This commit is contained in:
Dan Balasescu 2019-03-13 20:55:33 +09:00 committed by GitHub
parent a10cd2288d
commit 5d23a966d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ private void applyAdjustment(double adjustment)
if (clock is IHasPitchAdjust tempo)
tempo.PitchAdjust = baseAdjust * localAdjust;
else
clock.Rate *= baseAdjust * localAdjust;
clock.Rate = baseAdjust * localAdjust;
}
}
}