From a93f8103adb40a73b3f235e35b94c2bb6b74f663 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 23 Jun 2018 22:15:34 -0400 Subject: [PATCH] Zooms out the CPC a little more. To fix the maximum amount of content that I can, at least for now. --- 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 a2d50ccc7..c8e7da431 100644 --- a/Machines/AmstradCPC/AmstradCPC.cpp +++ b/Machines/AmstradCPC/AmstradCPC.cpp @@ -339,7 +339,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.11f, 0.1f, 0.85f, 0.85f)); + crt_->set_visible_area(Outputs::CRT::Rect(0.1072f, 0.08f, 0.875f, 0.875f)); crt_->set_video_signal(Outputs::CRT::VideoSignal::RGB); }