advilman
06-18-2020, 11:25 AM
The alert sound didn't play for me for some reason.
I fixed it by making this change on line 3669...
From
else if (PlayOnMatch)
{
String tempstr = AudioFile.Replace("\\", "\\\\");
Play(tempstr);
}
To
else if (PlayOnMatch)
{
//String tempstr = AudioFile.Replace("\\", "\\\\");
Play(AudioFile);
}
I fixed it by making this change on line 3669...
From
else if (PlayOnMatch)
{
String tempstr = AudioFile.Replace("\\", "\\\\");
Play(tempstr);
}
To
else if (PlayOnMatch)
{
//String tempstr = AudioFile.Replace("\\", "\\\\");
Play(AudioFile);
}