1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-30 22:56:03 +00:00

Trimmed the visible area.

This commit is contained in:
Thomas Harte 2016-06-12 18:01:38 -04:00
parent a5efa7543a
commit 4ad55a7f5e

View File

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