1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-22 12:33:29 +00:00

Fix OpenGL Apple II colors

Adjust phase by 90 degress.

Closes #872
This commit is contained in:
Ryan Carsten Schmidt 2023-12-15 04:28:18 -06:00
parent cd4498a36a
commit 81ad864659

View File

@ -471,7 +471,7 @@ template <class BusHandler, bool is_iie> class Video: public VideoBase {
#if defined(__APPLE__) && !defined(IGNORE_APPLE)
constexpr int phase = 224;
#else
constexpr int phase = 0;
constexpr int phase = 192;
#endif
crt_.output_colour_burst((colour_burst_end - colour_burst_start) * 14, phase);