mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
(MB): added 'XX' signature.
This commit is contained in:
@@ -45,7 +45,7 @@ namespace GameRes.Formats
|
|||||||
{
|
{
|
||||||
int c1 = stream.ReadByte();
|
int c1 = stream.ReadByte();
|
||||||
int c2 = stream.ReadByte();
|
int c2 = stream.ReadByte();
|
||||||
// MB/MC/MK/CL
|
// MB/MC/MK/CL/XX
|
||||||
switch (c1)
|
switch (c1)
|
||||||
{
|
{
|
||||||
case 'M':
|
case 'M':
|
||||||
@@ -56,6 +56,10 @@ namespace GameRes.Formats
|
|||||||
if ('L' != c2)
|
if ('L' != c2)
|
||||||
return null;
|
return null;
|
||||||
break;
|
break;
|
||||||
|
case 'X':
|
||||||
|
if ('X' != c2)
|
||||||
|
return null;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user