mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:17:51 +08:00
Merge branch 'taiko-don' of https://github.com/Craftplacer/osu into taiko-don
This commit is contained in:
commit
6de6f068fd
@ -82,7 +82,7 @@ namespace osu.Game.Rulesets.Taiko.UI
|
|||||||
return failDrawable;
|
return failDrawable;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
throw new ArgumentException($"There's no case for animation state ${state} available", nameof(state));
|
throw new ArgumentOutOfRangeException(nameof(state), $"There's no animation available for state {state}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -102,7 +102,7 @@ namespace osu.Game.Rulesets.Taiko.UI
|
|||||||
return "kiai";
|
return "kiai";
|
||||||
|
|
||||||
default:
|
default:
|
||||||
throw new ArgumentException($"There's no case for animation state ${state} available", nameof(state));
|
throw new ArgumentOutOfRangeException(nameof(state), $"There's no case for animation state {state} available");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user