From 1972ca00a4a16d472a65dbb0c5a6e8cc2af0559d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 16 Jan 2020 00:01:16 -0500 Subject: [PATCH] Fixes quick-NTSC-avoidance fix. I suspect this is very temporary, but here it is. --- Machines/Oric/Oric.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Oric/Oric.cpp b/Machines/Oric/Oric.cpp index 7f6323d2c..53eee6691 100644 --- a/Machines/Oric/Oric.cpp +++ b/Machines/Oric/Oric.cpp @@ -252,7 +252,7 @@ template 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) {