mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 14:17:26 +08:00
Add note about intentional downward pitch, against expectations
This commit is contained in:
parent
13254d51fc
commit
bd6664d541
@ -242,7 +242,9 @@ namespace osu.Game.Overlays.Volume
|
||||
|
||||
if (displayVolumeInt == 0)
|
||||
channel.Frequency.Value -= 0.5f;
|
||||
else if (displayVolumeInt == 100) channel.Frequency.Value -= 0.5f;
|
||||
else if (displayVolumeInt == 100)
|
||||
// intentionally pitched down, even when hitting max.
|
||||
channel.Frequency.Value -= 0.5f;
|
||||
|
||||
channel.Play();
|
||||
sampleLastPlaybackTime = Time.Current;
|
||||
|
Loading…
Reference in New Issue
Block a user