From 6ef1dfd8be4f0ee9a11300b616756b94d9bf7840 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 2 Sep 2020 15:52:05 -0400 Subject: [PATCH] Sets a more realistic colour subcarrier amplitude. --- Outputs/CRT/CRT.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Outputs/CRT/CRT.hpp b/Outputs/CRT/CRT.hpp index 8c9a79f5d..7ab9dbcf5 100644 --- a/Outputs/CRT/CRT.hpp +++ b/Outputs/CRT/CRT.hpp @@ -81,7 +81,7 @@ class CRT { Outputs::Display::ScanTarget *scan_target_ = &Outputs::Display::NullScanTarget::singleton; Outputs::Display::ScanTarget::Modals scan_target_modals_; - static constexpr uint8_t DefaultAmplitude = 80; + static constexpr uint8_t DefaultAmplitude = 41; // Based upon a black level to maximum excursion and positive burst peak of: NTSC: 882 & 143; PAL: 933 & 150. #ifndef NDEBUG size_t allocated_data_length_ = std::numeric_limits::min();