1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:27:29 +08:00

Use established constants

This commit is contained in:
Bartłomiej Dach 2024-06-06 13:39:32 +02:00
parent 86b13074a0
commit 7a8a37dae6
No known key found for this signature in database

View File

@ -63,9 +63,9 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
{
return bank switch
{
"normal" => "N",
"soft" => "S",
"drum" => "D",
HitSampleInfo.BANK_NORMAL => @"N",
HitSampleInfo.BANK_SOFT => @"S",
HitSampleInfo.BANK_DRUM => @"D",
_ => bank
};
}