1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Adjust exceptions and fix capitalisation

This commit is contained in:
Dean Herbert 2020-04-28 11:08:19 +09:00
parent f387fe310f
commit 84641765c5
2 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,7 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using osu.Framework.Audio.Sample;
using osu.Framework.Bindables;
@ -86,7 +87,7 @@ namespace osu.Game.Rulesets.Taiko.Skinning
case TaikoSkinComponents.TaikoExplosionGreat:
case TaikoSkinComponents.TaikoExplosionMiss:
var sprite = this.GetAnimation(getHitname(taikoComponent.Component), true, false);
var sprite = this.GetAnimation(getHitName(taikoComponent.Component), true, false);
if (sprite != null)
return new LegacyHitExplosion(sprite);
@ -96,7 +97,7 @@ namespace osu.Game.Rulesets.Taiko.Skinning
return source.GetDrawableComponent(component);
}
private string getHitname(TaikoSkinComponents component)
private string getHitName(TaikoSkinComponents component)
{
switch (component)
{
@ -110,7 +111,7 @@ namespace osu.Game.Rulesets.Taiko.Skinning
return "taiko-hit300";
}
return string.Empty;
throw new ArgumentOutOfRangeException(nameof(component), "Invalid result type");
}
public Texture GetTexture(string componentName) => source.GetTexture(componentName);

View File

@ -56,7 +56,7 @@ namespace osu.Game.Rulesets.Taiko.UI
return TaikoSkinComponents.TaikoExplosionGreat;
}
throw new ArgumentException("Invalid result type", nameof(resultType));
throw new ArgumentOutOfRangeException(nameof(resultType), "Invalid result type");
}
protected override void LoadComplete()