1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-23 20:29:42 +00:00

Fixes quick-NTSC-avoidance fix.

I suspect this is very temporary, but here it is.
This commit is contained in:
Thomas Harte 2020-01-16 00:01:16 -05:00
parent 6a185a574a
commit 1972ca00a4

View File

@ -252,7 +252,7 @@ template <Analyser::Static::Oric::Target::DiskInterface disk_interface> class Co
// disallow all atributes.
Memory::Fuzz(ram_, sizeof(ram_));
for(size_t c = 0; c < sizeof(ram_); ++c) {
ram_[c] &= ~0x40;
ram_[c] |= 0x40;
}
if constexpr (disk_interface == DiskInterface::Pravetz) {