1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Fix suggested value in audio offset adjust control being opposite in signs

This commit is contained in:
Salman Ahmed 2023-12-30 21:34:37 +03:00
parent 68dd103c89
commit e6fe631625

View File

@ -145,7 +145,7 @@ namespace osu.Game.Overlays.Settings.Sections.Audio
break;
}
SuggestedOffset.Value = averageHitErrorHistory.Any() ? -averageHitErrorHistory.Average(dataPoint => dataPoint.SuggestedGlobalAudioOffset) : null;
SuggestedOffset.Value = averageHitErrorHistory.Any() ? averageHitErrorHistory.Average(dataPoint => dataPoint.SuggestedGlobalAudioOffset) : null;
}
private float getXPositionForOffset(double offset) => (float)(Math.Clamp(offset, current.MinValue, current.MaxValue) / (2 * current.MaxValue));