1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 17:16:44 +00:00

[Re-]recalibrates CRT retrace period and affected view windows.

In the hope of moving the CPC closer to the real CTM visible area.
This commit is contained in:
Thomas Harte
2018-07-05 22:07:18 -04:00
parent fa63f7ffc3
commit c97c5fa03a
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ VideoOutput::VideoOutput(uint8_t *memory) :
crt_->set_composite_function_type(Outputs::CRT::CRT::CompositeSourceType::DiscreteFourSamplesPerCycle, 0.0f);
set_video_signal(Outputs::CRT::VideoSignal::Composite);
crt_->set_visible_area(crt_->get_rect_for_area(53, 224, 16 * 6, 40 * 6, 4.0f / 3.0f));
crt_->set_visible_area(crt_->get_rect_for_area(54, 224, 16 * 6, 40 * 6, 4.0f / 3.0f));
}
void VideoOutput::set_video_signal(Outputs::CRT::VideoSignal video_signal) {