Use altform first

Closes #1947
This commit is contained in:
Kurt 2018-05-15 15:23:31 -07:00
parent 4a20710a96
commit b798da9b03

View file

@ -177,10 +177,10 @@ namespace PKHeX.WinForms.Controls
if (pk.Species == 0)
return;
var path = Path.Combine(Main.CryPath, $"{pk.Species}.wav");
var path = Path.Combine(Main.CryPath, $"{pk.Species}-{pk.AltForm}.wav");
if (!File.Exists(path))
{
path = Path.Combine(Main.CryPath, $"{pk.Species}-{pk.AltForm}.wav");
path = Path.Combine(Main.CryPath, $"{pk.Species}.wav");
if (!File.Exists(path))
return;
}