From 30e93979d2e092edc140a9a8b2b6d06aeb979d61 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 8 Jul 2017 21:01:07 -0400 Subject: [PATCH] Removed data work if sync is enabled; in that case no data is output. --- Machines/ZX8081/Video.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Machines/ZX8081/Video.cpp b/Machines/ZX8081/Video.cpp index 5102cdffd..0f9f64b0c 100644 --- a/Machines/ZX8081/Video.cpp +++ b/Machines/ZX8081/Video.cpp @@ -76,6 +76,7 @@ void Video::set_sync(bool sync) { void Video::output_byte(uint8_t byte) { // Complete whatever was going on. + if(sync_) return; flush(); // Grab a buffer if one isn't already available.