From 9968342a118db937ce65ae17ac48f02405df9652 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 23 Jun 2018 16:18:33 -0400 Subject: [PATCH 1/2] Ensures the pixel collection test is inline with other decisions. --- Machines/AmstradCPC/AmstradCPC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/AmstradCPC/AmstradCPC.cpp b/Machines/AmstradCPC/AmstradCPC.cpp index a31ca7568..863bece81 100644 --- a/Machines/AmstradCPC/AmstradCPC.cpp +++ b/Machines/AmstradCPC/AmstradCPC.cpp @@ -242,7 +242,7 @@ class CRTCBusHandler { cycles_++; // collect some more pixels if output is ongoing - if(!is_sync && state.display_enable) { + if(previous_output_mode_ == OutputMode::Pixels) { if(!pixel_data_) { pixel_pointer_ = pixel_data_ = crt_->allocate_write_area(320, 8); } From 1c6af279b23c72c9393fc56f4182f99e8453e78e Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 23 Jun 2018 16:40:17 -0400 Subject: [PATCH 2/2] Picks more appropriate cropping now that I'm obeying HSYNC-as-blank. --- Machines/AmstradCPC/AmstradCPC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/AmstradCPC/AmstradCPC.cpp b/Machines/AmstradCPC/AmstradCPC.cpp index 863bece81..5fb513da4 100644 --- a/Machines/AmstradCPC/AmstradCPC.cpp +++ b/Machines/AmstradCPC/AmstradCPC.cpp @@ -338,7 +338,7 @@ class CRTCBusHandler { "uint sample = texture(texID, coordinate).r;" "return vec3(float((sample >> 4) & 3u), float((sample >> 2) & 3u), float(sample & 3u)) / 2.0;" "}"); - crt_->set_visible_area(Outputs::CRT::Rect(0.075f, 0.05f, 0.9f, 0.9f)); + crt_->set_visible_area(Outputs::CRT::Rect(0.11f, 0.1f, 0.85f, 0.85f)); crt_->set_video_signal(Outputs::CRT::VideoSignal::RGB); }