diff --git a/ArcFormats/AudioOGG.cs b/ArcFormats/AudioOGG.cs index 3661091a..1d9c98e1 100644 --- a/ArcFormats/AudioOGG.cs +++ b/ArcFormats/AudioOGG.cs @@ -147,7 +147,7 @@ namespace GameRes.Formats uint fmt_size = header.ToUInt32 (0x10); long fmt_pos = file.Position; ushort format = file.ReadUInt16(); - if (format != 0x6770 && format != 0x6771) + if (format != 0x676F && format != 0x6770 && format != 0x6771) return null; // interpret WAVE 'data' section as Ogg stream file.Position = fmt_pos + ((fmt_size + 1) & ~1);