reorder 512K bankswitching detection

This commit is contained in:
thrust26 2020-05-25 18:32:13 +02:00
parent 70ab70ab46
commit f84498d7c7
1 changed files with 3 additions and 3 deletions

View File

@ -534,14 +534,14 @@ Bankswitch::Type CartDetector::autodetectType(const ByteBuffer& image, size_t si
}
else if(size == 512_KB)
{
if(isProbably3EX(image, size))
if(isProbablyTVBoy(image, size))
type = Bankswitch::Type::_TVBOY;
else if(isProbably3EX(image, size))
type = Bankswitch::Type::_3EX;
else if(isProbably3E(image, size))
type = Bankswitch::Type::_3E;
else if(isProbably3F(image, size))
type = Bankswitch::Type::_3F;
else if(isProbablyTVBoy(image, size))
type = Bankswitch::Type::_TVBOY;
}
else // what else can we do?
{