Denote unused variable

This commit is contained in:
Dean Herbert 2018-01-09 21:34:25 +09:00
parent c2fadcfc1f
commit 2518d16a77
1 changed files with 3 additions and 3 deletions

View File

@ -318,9 +318,9 @@ protected override void OnEntering(Screen last)
if (!loadedSuccessfully)
return;
dimLevel.ValueChanged += value => updateBackgroundElements();
blurLevel.ValueChanged += value => updateBackgroundElements();
showStoryboard.ValueChanged += value => updateBackgroundElements();
dimLevel.ValueChanged += _ => updateBackgroundElements();
blurLevel.ValueChanged += _ => updateBackgroundElements();
showStoryboard.ValueChanged += _ => updateBackgroundElements();
updateBackgroundElements();
Content.Alpha = 0;