From e45fe4380180bbcecf3f7d2d50ff1adb443ec9ac Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 10 Apr 2016 23:02:34 -0400 Subject: [PATCH] Removed some dead caveman debugging. --- Outputs/CRT/CRT.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Outputs/CRT/CRT.cpp b/Outputs/CRT/CRT.cpp index d7bf891c0..86c909722 100644 --- a/Outputs/CRT/CRT.cpp +++ b/Outputs/CRT/CRT.cpp @@ -285,11 +285,6 @@ void CRT::output_scan(const Scan *const scan) // const bool hsync_requested = is_trailing_edge && (_sync_period < (_horizontal_flywheel->get_scan_period() >> 2)); const bool vsync_requested = is_trailing_edge && (_sync_capacitor_charge_level >= _sync_capacitor_charge_threshold); -// if(is_trailing_edge && _sync_capacitor_charge_threshold - _sync_capacitor_charge_level < 3000) -// { -// printf("%d\n", _sync_capacitor_charge_threshold - _sync_capacitor_charge_level); -// } - // simplified colour burst logic: if it's within the back porch we'll take it if(scan->type == Scan::Type::ColourBurst) {