From e208f03636ebf5e2ddc3ff9620d1ce015c4d3679 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 16 Aug 2017 09:58:34 -0400 Subject: [PATCH] Corrects the US colour palette, effectively undoing what was a mistaken adjustment for the time when Oric-centric phase alignment was built into the CRT based on a false calculation that it wouldn't affect the machines that generate chrominance functionally. --- Components/6560/6560.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Components/6560/6560.hpp b/Components/6560/6560.hpp index 32d316df9..b6639c7f3 100644 --- a/Components/6560/6560.hpp +++ b/Components/6560/6560.hpp @@ -100,10 +100,10 @@ template class MOS6560 { 8, 88, 120, 56, }; const uint8_t ntsc_chrominances[16] = { - 255, 255, 40, 104, - 64, 120, 80, 16, - 32, 32, 40, 104, - 64, 120, 80, 16, + 255, 255, 8, 72, + 32, 88, 48, 112, + 0, 0, 8, 72, + 32, 88, 48, 112, }; const uint8_t *chrominances; Outputs::CRT::DisplayType display_type;