From 7030abca97d757d2e4272ff435e79a937114083d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 25 Feb 2019 19:28:52 -0500 Subject: [PATCH] Corrects PAL colours for the Vic-20. --- Components/6560/6560.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Components/6560/6560.hpp b/Components/6560/6560.hpp index eaa5264c8..ac4dbd099 100644 --- a/Components/6560/6560.hpp +++ b/Components/6560/6560.hpp @@ -107,12 +107,12 @@ template class MOS6560 { // Chrominances are encoded such that 0-128 is a complete revolution of phase; // anything above 191 disables the colour subcarrier. Phase is relative to the - // colour burst, so 0 is green. + // colour burst, so 0 is green (NTSC) or blue/violet (PAL). const uint8_t pal_chrominances[16] = { - 255, 255, 37, 101, - 19, 86, 123, 59, - 46, 53, 37, 101, - 19, 86, 123, 59, + 255, 255, 90, 20, + 96, 42, 8, 72, + 84, 90, 90, 20, + 96, 42, 8, 72, }; const uint8_t ntsc_chrominances[16] = { 255, 255, 121, 57,