1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 08:28:57 +00:00

Zooms out the CPC a little more.

To fix the maximum amount of content that I can, at least for now.
This commit is contained in:
Thomas Harte 2018-06-23 22:15:34 -04:00
parent 4a3d7c338a
commit a93f8103ad

View File

@ -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);
}