1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 04:19:54 +08:00
Forgot the pharenteses
This commit is contained in:
ColdVolcano
2017-05-22 05:05:54 -05:00
Unverified
parent 601b840713
commit 63196df541
+1 -1
View File
@@ -68,7 +68,7 @@ namespace osu.Game.Screens.Menu
return;
TrackAmplitudes amp = beatmap.Value.Track.CurrentAmplitudes;
if (kiai ? newBeat % 2 == 0 : newBeat % (int)timeSignature) == 0)
if (kiai ? newBeat % 2 == 0 : newBeat % (int)timeSignature == 0)
{
leftBox.ClearTransforms();
leftBox.FadeTo(Math.Max(0, (amp.LeftChannel - amplitude_dead_zone) / (kiai ? kiai_multiplier : alpha_multiplier)), 65);