Skip to content

Commit

Permalink
Use orange for non-combo-breaking miss
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Dec 20, 2023
1 parent d2716d8 commit d1ba2a4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions osu.Game/Graphics/OsuColour.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,12 @@ public Color4 ForHitResult(HitResult result)
{
switch (result)
{
case HitResult.SmallTickMiss:
case HitResult.LargeTickMiss:
case HitResult.IgnoreMiss:
case HitResult.SmallTickMiss:
return Orange1;

case HitResult.Miss:
case HitResult.LargeTickMiss:
case HitResult.ComboBreak:
return Red;

Expand Down

0 comments on commit d1ba2a4

Please sign in to comment.