Remove magic number of ARC data format since it conflicts with EBML - TODO: figure out a way to disambiguate

This commit is contained in:
Michael Becker 2014-10-24 15:58:36 -04:00
parent d423e85c05
commit 5430a48b6a

View File

@ -15,7 +15,7 @@ namespace UniversalEditor.DataFormats.FileSystem.ARC
{
_dfr = base.MakeReference();
_dfr.Capabilities.Add(typeof(FileSystemObjectModel), DataFormatCapabilities.All);
_dfr.Filters.Add("SEA ARC archive", new byte?[][] { new byte?[] { 0x1A } }, new string[] { "*.arc" });
_dfr.Filters.Add("SEA ARC archive", /* new byte?[][] { new byte?[] { 0x1A } }, */ new string[] { "*.arc" });
}
return _dfr;
}