1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-30 07:55:01 +00:00

Picks more appropriate cropping now that I'm obeying HSYNC-as-blank.

This commit is contained in:
Thomas Harte 2018-06-23 16:40:17 -04:00
parent 6e96275e1c
commit 1c6af279b2

View File

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