mirror of
https://github.com/lifegpc/GARbro.git
synced 2026-06-06 05:28:49 +08:00
(MB): added 'XX' signature.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user