From ab7de589ec70b831274c5a26bc52b3e25b652ff6 Mon Sep 17 00:00:00 2001 From: morkt Date: Thu, 11 Feb 2016 16:48:29 +0400 Subject: [PATCH] (EriFormat): added signature string for "moving" images. --- ArcFormats/Entis/ImageERI.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ArcFormats/Entis/ImageERI.cs b/ArcFormats/Entis/ImageERI.cs index 831360f9..99fdba8c 100644 --- a/ArcFormats/Entis/ImageERI.cs +++ b/ArcFormats/Entis/ImageERI.cs @@ -148,7 +148,8 @@ namespace GameRes.Formats.Entis return null; if (0x03000100 != LittleEndian.ToUInt32 (header, 8)) return null; - if (!Binary.AsciiEqual (header, 0x10, "Entis Rasterized Image")) + if (!Binary.AsciiEqual (header, 0x10, "Entis Rasterized Image") + && !Binary.AsciiEqual (header, 0x10, "Moving Entis Image")) return null; using (var reader = new EriFile (stream)) {