From bcb7c27cc4fb0b4412e9f61ee85c9bc1763b0b30 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 8 Jul 2017 19:21:33 -0400 Subject: [PATCH] Given that I'm not racing this any more, turned the intended 1 second back into 1 second. --- Storage/Tape/Formats/ZX80O81P.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Storage/Tape/Formats/ZX80O81P.cpp b/Storage/Tape/Formats/ZX80O81P.cpp index e1f969217..50a005260 100644 --- a/Storage/Tape/Formats/ZX80O81P.cpp +++ b/Storage/Tape/Formats/ZX80O81P.cpp @@ -54,7 +54,7 @@ Tape::Pulse ZX80O81P::virtual_get_next_pulse() { // Start with 1 second of silence. if(!is_past_silence_ || has_finished_data()) { pulse.type = Pulse::Type::Low; - pulse.length.length = 10; + pulse.length.length = 1; pulse.length.clock_rate = 1; is_past_silence_ = true; has_ended_final_byte_ = has_finished_data();