From 4ad55a7f5e6c2faf871b12614d127fb5e16d36ef Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 12 Jun 2016 18:01:38 -0400 Subject: [PATCH] Trimmed the visible area. --- Components/6560/6560.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Components/6560/6560.cpp b/Components/6560/6560.cpp index 162c65964..8387fd7a3 100644 --- a/Components/6560/6560.cpp +++ b/Components/6560/6560.cpp @@ -52,6 +52,9 @@ MOS6560::MOS6560() : { _colours[c] = (uint8_t)((luminances[c] << 4) | ntsc_chrominances[c]); } + + // show the middle 90% + _crt->set_visible_area(Outputs::CRT::Rect(0.05f, 0.05f, 0.9f, 0.9f)); } void MOS6560::set_register(int address, uint8_t value)