From 7b5a588d5b29c0d04ab728f53862ca944d1ed253 Mon Sep 17 00:00:00 2001 From: LMP88959 <109979235+LMP88959@users.noreply.github.com> Date: Wed, 1 Feb 2023 16:02:28 -0800 Subject: [PATCH] Adjusted starting hue --- crt_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crt_core.c b/crt_core.c index 7424f43..b0ff51d 100644 --- a/crt_core.c +++ b/crt_core.c @@ -278,7 +278,7 @@ crt_demodulate(struct CRT *v, int noise) int max_e; /* approx maximum energy in a scan line */ #endif - crt_sincos14(&huesn, &huecs, ((v->hue % 360) - 33) * 8192 / 180); + crt_sincos14(&huesn, &huecs, ((v->hue % 360) + 33) * 8192 / 180); huesn >>= 11; /* make 4-bit */ huecs >>= 11;