From e8f87af7f0b5015462226cdcba82b55f003ccaa4 Mon Sep 17 00:00:00 2001 From: morkt Date: Mon, 22 Jan 2018 15:51:23 +0400 Subject: [PATCH] (OGG): another tag for ogg streams embedded into WAV files. --- ArcFormats/AudioOGG.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);