diff --git a/GameRes/AudioWAV.cs b/GameRes/AudioWAV.cs index 4ae0b524..c7c6caf6 100644 --- a/GameRes/AudioWAV.cs +++ b/GameRes/AudioWAV.cs @@ -120,7 +120,10 @@ namespace GameRes sound = embedded; } } - catch { /* ignore errors */ } + catch + { + sound.Position = 0; + } } return sound; }