From 7e6a6365c948e8e5bdddf58ed9fd7565918650c8 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 4 Aug 2017 16:50:58 -0400 Subject: [PATCH] Adjusted visible portion of frame; completely empirical, as I'm chasing a machine that shipped with a monitor. --- 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 a908b4329..406f045c9 100644 --- a/Machines/AmstradCPC/AmstradCPC.cpp +++ b/Machines/AmstradCPC/AmstradCPC.cpp @@ -285,7 +285,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.05f, 0.05f, 0.9f, 0.9f)); + crt_->set_visible_area(Outputs::CRT::Rect(0.075f, 0.05f, 0.9f, 0.9f)); } /// Destructs the CRT.