if (image.software_entry() == nullptr)
{
[...] // try to get information from header
}
else
{
if (size > 0xffff) // 64,128,256,512k cartridges
m_granularity = size >> 8;
else
m_granularity = 0x400; // Homebrew roms not using all 256 banks (T-Tris) (none currently in softlist)
}