diff --git a/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs b/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs index 31699ef32..fc8ecfcae 100644 --- a/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs +++ b/PKHeX.WinForms/Controls/SAV Editor/SlotChangeManager.cs @@ -177,14 +177,10 @@ private void PlayCry(PKM pk) if (pk.Species == 0) return; - string resource = $"{pk.Species}-{pk.AltForm}"; - string getpath() => Path.Combine(Main.CryPath, $"{resource}.wav"); - - var path = getpath(); + var path = Path.Combine(Main.CryPath, $"{pk.Species}.wav"); if (!File.Exists(path)) { - resource = $"{pk.Species}"; - path = getpath(); + path = Path.Combine(Main.CryPath, $"{pk.Species}-{pk.AltForm}.wav"); if (!File.Exists(path)) return; }