Re: CGA Composite Mode under DOSBOX?
Posted on 2012-05-13, 23:12
For anyone else who wants to test, here are the changes from my last patch: in vga_other.cpp, find the "#if 0"..."#endif" section and replace it with static const double gamma = 2.2; double R = Y + 0.9563*I + 0.6210*Q; R = (R - 0.075) / (1-0.075); if (R<0) R=0; if (R>1) R=1; double G = Y - 0.2721*I …