mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 05:35:34 +08:00
(MB): added 'XX' signature.
This commit is contained in:
parent
05ab3e2600
commit
849fb5508c
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user