Skip to content

Commit

Permalink
Merge pull request #19236 from peppy/fix-editor-clap-finish-order
Browse files Browse the repository at this point in the history
Fix editor clap/finish buttons being ordered against expectations
  • Loading branch information
peppy authored Jul 20, 2022
2 parents 87afa73 + 990d3ff commit 19effc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Game/Audio/HitSampleInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ namespace osu.Game.Audio
[Serializable]
public class HitSampleInfo : ISampleInfo, IEquatable<HitSampleInfo>
{
public const string HIT_NORMAL = @"hitnormal";
public const string HIT_WHISTLE = @"hitwhistle";
public const string HIT_FINISH = @"hitfinish";
public const string HIT_NORMAL = @"hitnormal";
public const string HIT_CLAP = @"hitclap";

/// <summary>
/// All valid sample addition constants.
/// </summary>
public static IEnumerable<string> AllAdditions => new[] { HIT_WHISTLE, HIT_CLAP, HIT_FINISH };
public static IEnumerable<string> AllAdditions => new[] { HIT_WHISTLE, HIT_FINISH, HIT_CLAP };

/// <summary>
/// The name of the sample to load.
Expand Down

0 comments on commit 19effc9

Please sign in to comment.