Skip to content

Commit

Permalink
Adjusted starting hue
Browse files Browse the repository at this point in the history
  • Loading branch information
LMP88959 authored Feb 2, 2023
1 parent 64781c7 commit 7b5a588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crt_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 7b5a588

Please sign in to comment.