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

Switched to a tight crop on the pixel part of the display.

This commit is contained in:
Thomas Harte 2016-10-15 21:43:46 -04:00
parent 952a24f769
commit a67afb7efa

View File

@ -30,6 +30,7 @@ VideoOutput::VideoOutput(uint8_t *memory) :
"}");
_crt->set_output_device(Outputs::CRT::Television);
_crt->set_visible_area(_crt->get_rect_for_area(50, 224, 16 * 6, 40 * 6, 4.0f / 3.0f));
}
std::shared_ptr<Outputs::CRT::CRT> VideoOutput::get_crt()