mirror of https://github.com/stella-emu/stella.git
Add autodetection for 32KB variant of CTY ROM.
This commit is contained in:
parent
7982f7cb9b
commit
56d9bdc163
|
@ -433,7 +433,9 @@ Bankswitch::Type CartDetector::autodetectType(const BytePtr& image, uInt32 size)
|
||||||
}
|
}
|
||||||
else if(size == 32*1024) // 32K
|
else if(size == 32*1024) // 32K
|
||||||
{
|
{
|
||||||
if(isProbablySC(image, size))
|
if (isProbablyCTY(image, size))
|
||||||
|
type = Bankswitch::Type::_CTY;
|
||||||
|
else if(isProbablySC(image, size))
|
||||||
type = Bankswitch::Type::_F4SC;
|
type = Bankswitch::Type::_F4SC;
|
||||||
else if(isProbably3E(image, size))
|
else if(isProbably3E(image, size))
|
||||||
type = Bankswitch::Type::_3E;
|
type = Bankswitch::Type::_3E;
|
||||||
|
|
Loading…
Reference in New Issue