HDL-ON_iOS/Other/SoundPlayer.cs
@@ -6,7 +6,7 @@ { public class SoundPlayer { private AVAudioPlayer player; public AVAudioPlayer player; private static SoundPlayer _soundPlayer; public static SoundPlayer Ins @@ -49,10 +49,13 @@ public void StopSound() { if (_soundPlayer.player != null) { _soundPlayer.player.Stop(); _soundPlayer.player.Dispose(); _soundPlayer = null; } } } }