Skip to content

Commit

Permalink
Fix OpenGL Apple II colors
Browse files Browse the repository at this point in the history
Adjust phase by 90 degress.

Closes #872
  • Loading branch information
ryandesign committed Dec 15, 2023
1 parent cd4498a commit 81ad864
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Machines/Apple/AppleII/Video.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 81ad864

Please sign in to comment.