From 31e9a53a44cf5e8428e509056b6e29623c7689ee Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 27 Jul 2015 16:43:51 -0400 Subject: [PATCH] Removed some debugging code. --- Outputs/CRT.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Outputs/CRT.cpp b/Outputs/CRT.cpp index 18b688226..04ef64c36 100644 --- a/Outputs/CRT.cpp +++ b/Outputs/CRT.cpp @@ -174,13 +174,6 @@ void CRT::advance_cycles(int number_of_cycles, bool hsync_requested, const bool uint16_t tex_x = 0; uint16_t tex_y = 0; -// static int o; -// if(is_output_run) -// { -// o++; -// if(o&1) is_output_run = false; -// } - if(is_output_run && _current_frame_builder) { tex_x = _current_frame_builder->_write_x_position; tex_y = _current_frame_builder->_write_y_position; @@ -302,7 +295,6 @@ void CRT::advance_cycles(int number_of_cycles, bool hsync_requested, const bool _current_frame_builder->complete(); _frames_with_delegate++; _delegate->crt_did_end_frame(this, &_current_frame_builder->frame); -// o = 0; } if(_frames_with_delegate < kCRTNumberOfFrames)