From 414b0cc23497ff354e95e15e3929574c860ab3fe Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 2 Jan 2020 23:36:11 -0500 Subject: [PATCH] Reintroduces sync write delay. --- Machines/Atari/ST/Video.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Machines/Atari/ST/Video.cpp b/Machines/Atari/ST/Video.cpp index 2e888f087..00931efbc 100644 --- a/Machines/Atari/ST/Video.cpp +++ b/Machines/Atari/ST/Video.cpp @@ -465,10 +465,10 @@ void Video::write(int address, uint16_t value) { // Sync mode and pixel mode. case 0x05: // Writes to sync mode have a one-cycle delay in effect. -// deferrer_.defer(HalfCycles(2), [=] { + deferrer_.defer(HalfCycles(2), [=] { sync_mode_ = value; update_output_mode(); -// }); + }); break; case 0x30: video_mode_ = value;