Made 'PlaySound' not a static method.

This commit is contained in:
kevinepope 2015-01-18 17:30:04 -08:00
parent cbd3f4abd3
commit cd184c5670

View file

@ -109,7 +109,7 @@ namespace MatterHackers.MatterControl
}
}
public static void PlaySound(string fileName)
public void PlaySound(string fileName)
{
using (var mediaStream = StaticData.Instance.OpenSteam(Path.Combine("Sounds", fileName)))
{