From a67afb7efa4091481695de144a8709b5c0ebecf2 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 15 Oct 2016 21:43:46 -0400 Subject: [PATCH] Switched to a tight crop on the pixel part of the display. --- Machines/Oric/Video.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Machines/Oric/Video.cpp b/Machines/Oric/Video.cpp index 6f8ec7388..8353e596d 100644 --- a/Machines/Oric/Video.cpp +++ b/Machines/Oric/Video.cpp @@ -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 VideoOutput::get_crt()