diff --git a/ArcFormats/Crowd/AudioEOG.cs b/ArcFormats/Crowd/AudioEOG.cs index d8dc419c..087c6d74 100644 --- a/ArcFormats/Crowd/AudioEOG.cs +++ b/ArcFormats/Crowd/AudioEOG.cs @@ -36,6 +36,11 @@ namespace GameRes.Formats.Crowd public override string Description { get { return "Crowd engine audio format (Ogg/Vorbis)"; } } public override uint Signature { get { return 0x004D5243; } } // 'CRM' + public EogAudio () + { + Extensions = new string[] { "eog", "amb" }; + } + public override SoundInput TryOpen (IBinaryStream file) { var ogg = new StreamRegion (file.AsStream, 8);