diff --git a/ArcFormats/Softpal/ArcVAFS.cs b/ArcFormats/Softpal/ArcVAFS.cs index 1544d0d5..6a72f3fa 100644 --- a/ArcFormats/Softpal/ArcVAFS.cs +++ b/ArcFormats/Softpal/ArcVAFS.cs @@ -146,7 +146,8 @@ namespace GameRes.Formats.Softpal { if (arc is TpArchive) return OpenVoiceEntry (arc, entry); - else if ("audio" == entry.Type) + else if ("audio" == entry.Type + && AudioFormat.Wav.Signature != arc.File.View.ReadUInt32 (entry.Offset)) return OpenAudioEntry (arc, entry); else return base.OpenEntry (arc, entry);