1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 19:17:52 +00:00

Attempts to complete all input processing — an RGB, S-Video or composite input buffer is now produced.

... for all input data types.
This commit is contained in:
Thomas Harte
2018-11-22 17:20:31 -05:00
parent 396cf72029
commit a697a2e4f6
5 changed files with 79 additions and 57 deletions
+1 -1
View File
@@ -206,7 +206,7 @@ void CRT::advance_cycles(int number_of_cycles, bool hsync_requested, bool vsync_
uint16_t(vertical_flywheel_->get_current_output_position() / vertical_flywheel_output_divider_));
// Prepare for the next line.
if(next_horizontal_sync_event == Flywheel::SyncEvent::EndRetrace) {
if(next_horizontal_sync_event == Flywheel::SyncEvent::StartRetrace) {
is_alernate_line_ ^= phase_alternates_;
colour_burst_amplitude_ = 0;
}