mirror of
https://github.com/ppy/osu.git
synced 2025-02-13 16:02:58 +08:00
Typo fix
Forgot the pharenteses
This commit is contained in:
parent
601b840713
commit
63196df541
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user