From 3c3c4d2f7c19cf870f1442bf15aafa07c5658a35 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 19 Aug 2015 21:35:26 -0400 Subject: [PATCH] Enlarged drawing range a little. --- Outputs/CRT.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Outputs/CRT.cpp b/Outputs/CRT.cpp index e8c142db2..437d23de6 100644 --- a/Outputs/CRT.cpp +++ b/Outputs/CRT.cpp @@ -12,8 +12,8 @@ using namespace Outputs; -static const uint32_t kCRTFixedPointRange = 0xefffffff; -static const uint32_t kCRTFixedPointOffset = 0x08000000; +static const uint32_t kCRTFixedPointRange = 0xf7ffffff; +static const uint32_t kCRTFixedPointOffset = 0x04000000; #define kRetraceXMask 0x01 #define kRetraceYMask 0x02