mirror of
https://github.com/lifegpc/GARbro.git
synced 2026-06-06 05:28:49 +08:00
(WAV): another OGG format tag.
This commit is contained in:
@@ -117,7 +117,7 @@ namespace GameRes
|
||||
if (!header.AsciiEqual (8, "WAVE"))
|
||||
return null;
|
||||
ushort tag = header.ToUInt16 (0x14);
|
||||
if (0xFFFF == tag || 0x676F == tag || 0x6770 == tag)
|
||||
if (0xFFFF == tag || 0x676F == tag || 0x6770 == tag || 0x674F == tag)
|
||||
return null;
|
||||
file.Position = 0;
|
||||
SoundInput sound = new WaveInput (file.AsStream);
|
||||
|
||||
Reference in New Issue
Block a user