From 28fad66272fe83ae9d5c8c414688c86d7f1f1dd3 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 19 Aug 2015 09:09:00 -0400 Subject: [PATCH] Okay, so I had those constants transposed. What a klutz I've been! --- Outputs/CRT.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Outputs/CRT.cpp b/Outputs/CRT.cpp index e7f122578..e8c142db2 100644 --- a/Outputs/CRT.cpp +++ b/Outputs/CRT.cpp @@ -21,8 +21,8 @@ static const uint32_t kCRTFixedPointOffset = 0x08000000; void CRT::set_new_timing(unsigned int cycles_per_line, unsigned int height_of_display) { const unsigned int syncCapacityLineChargeThreshold = 3; - const unsigned int millisecondsHorizontalRetraceTime = 10; // source: Dictionary of Video and Television Technology, p. 234 - const unsigned int scanlinesVerticalRetraceTime = 7; // source: ibid + const unsigned int millisecondsHorizontalRetraceTime = 7; // source: Dictionary of Video and Television Technology, p. 234 + const unsigned int scanlinesVerticalRetraceTime = 10; // source: ibid // To quote: //