1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Rename lambda param to avoid name shadowing

This commit is contained in:
Bartłomiej Dach 2022-03-03 20:28:19 +01:00
parent 2e24e7ef56
commit 15f65c7897
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

@ -94,7 +94,7 @@ namespace osu.Game.Screens.Play.PlayerSettings
ReferenceScore.BindValueChanged(scoreChanged, true);
beatmapOffsetSubscription = realm.SubscribeToPropertyChanged(
realm => realm.Find<BeatmapInfo>(beatmap.Value.BeatmapInfo.ID)?.UserSettings,
r => r.Find<BeatmapInfo>(beatmap.Value.BeatmapInfo.ID)?.UserSettings,
settings => settings.Offset,
val => Current.Value = val);