1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-03 11:30:02 +00:00

Slightly tidier. Also in the interim: confirmed no remaining false positives or negatives from the existing published set.

This commit is contained in:
Thomas Harte 2017-02-27 08:42:43 -05:00
parent 1af415a88e
commit 8f8b103224

View File

@ -87,10 +87,7 @@ static void DeterminePagingFor2kCartridge(StaticAnalyser::Target &target, const
// itself so as to land in ROM even if mapped as a CommaVid and this code is on the fence as to whether it
// attempts to modify itself but it probably doesn't
if(has_appropriate_accesses || has_wide_area_store)
{
target.atari.paging_model = StaticAnalyser::Atari2600PagingModel::CommaVid;
return;
}
}
static void DeterminePagingForCartridge(StaticAnalyser::Target &target, const Storage::Cartridge::Cartridge::Segment &segment)