diff --git a/ArcFormats/ImageMB.cs b/ArcFormats/ImageMB.cs index 4677b31d..70dc4117 100644 --- a/ArcFormats/ImageMB.cs +++ b/ArcFormats/ImageMB.cs @@ -45,7 +45,7 @@ namespace GameRes.Formats { int c1 = stream.ReadByte(); int c2 = stream.ReadByte(); - // MB/MC/MK/CL + // MB/MC/MK/CL/XX switch (c1) { case 'M': @@ -56,6 +56,10 @@ namespace GameRes.Formats if ('L' != c2) return null; break; + case 'X': + if ('X' != c2) + return null; + break; default: return null; }