From 2c7a9a11a59a7e40ffeef5750c928aff18aeb7d0 Mon Sep 17 00:00:00 2001 From: morkt Date: Thu, 14 Jun 2018 23:03:32 +0400 Subject: [PATCH] (EOG): added "amb" extension. --- ArcFormats/Crowd/AudioEOG.cs | 5 +++++ 1 file changed, 5 insertions(+) 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);