1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

Added an earlier exit.

This commit is contained in:
Thomas Harte 2017-03-11 19:38:05 -05:00
parent 8c7f724ce4
commit 1c9dffe41f

View File

@ -159,6 +159,7 @@ static void DeterminePagingForCartridge(StaticAnalyser::Target &target, const St
{
if(address < 128) has_superchip = false;
is_ram_plus = false;
if(!has_superchip && !is_ram_plus) break;
}
}
target.atari.uses_superchip = has_superchip;