1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Removed some dead caveman debugging.

This commit is contained in:
Thomas Harte 2016-04-10 23:02:34 -04:00
parent bdb99ba92f
commit e45fe43801

View File

@ -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)
{