1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 17:27:48 +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 return bank switch
{ {
"normal" => "N", HitSampleInfo.BANK_NORMAL => @"N",
"soft" => "S", HitSampleInfo.BANK_SOFT => @"S",
"drum" => "D", HitSampleInfo.BANK_DRUM => @"D",
_ => bank _ => bank
}; };
} }