diff --git a/src/emucore/CartDetector.cxx b/src/emucore/CartDetector.cxx index 14620cd55..9a16828d2 100644 --- a/src/emucore/CartDetector.cxx +++ b/src/emucore/CartDetector.cxx @@ -433,7 +433,9 @@ Bankswitch::Type CartDetector::autodetectType(const BytePtr& image, uInt32 size) } 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; else if(isProbably3E(image, size)) type = Bankswitch::Type::_3E;