1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Fixed failure to initialise the Microdisc flag if loading a tape.

This commit is contained in:
Thomas Harte 2016-12-06 20:29:05 -05:00
parent 0300ae4ec0
commit 4d3bdf8c7c

View File

@ -118,6 +118,10 @@ void StaticAnalyser::Oric::AddTargets(
target.oric.has_microdisc = true;
target.disks = disks;
}
else
{
target.oric.has_microdisc = false;
}
// TODO: really this should add two targets if not all votes agree
target.oric.use_atmos_rom = basic11_votes >= basic10_votes;