mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-29 20:31:46 +00:00
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.
This commit is contained in:
parent
cc9d23f23b
commit
e208f03636
@ -100,10 +100,10 @@ template <class T> class MOS6560 {
|
|||||||
8, 88, 120, 56,
|
8, 88, 120, 56,
|
||||||
};
|
};
|
||||||
const uint8_t ntsc_chrominances[16] = {
|
const uint8_t ntsc_chrominances[16] = {
|
||||||
255, 255, 40, 104,
|
255, 255, 8, 72,
|
||||||
64, 120, 80, 16,
|
32, 88, 48, 112,
|
||||||
32, 32, 40, 104,
|
0, 0, 8, 72,
|
||||||
64, 120, 80, 16,
|
32, 88, 48, 112,
|
||||||
};
|
};
|
||||||
const uint8_t *chrominances;
|
const uint8_t *chrominances;
|
||||||
Outputs::CRT::DisplayType display_type;
|
Outputs::CRT::DisplayType display_type;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user