Tidy up string output

This commit is contained in:
Dean Herbert
2019-10-28 12:31:38 +09:00
parent 1953aa64b6
commit 43ad4a3a3c
5 changed files with 11 additions and 6 deletions

View File

@ -37,8 +37,8 @@ namespace osu.Game.Screens.Edit.Timing
ControlPoint.BindValueChanged(point =>
{
bank.Text = $"Bank: {point.NewValue?.SampleBank}";
volume.Text = $"Volume: {point.NewValue?.SampleVolume}";
volume.Text = $"Volume: {point.NewValue?.SampleVolume}%";
});
}
}
}
}