1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Reinstated temporary Oric-related fix.

This commit is contained in:
Thomas Harte 2017-01-24 22:16:15 -05:00
parent 5761c8267b
commit 4d6e78e641

View File

@ -290,7 +290,7 @@ void CRT::output_scan(const Scan *const scan)
colour_burst_phase_ = (position_phase + scan->phase) & 255;
colour_burst_amplitude_ = scan->amplitude;
colour_burst_phase_ &= ~63;
colour_burst_phase_ = (colour_burst_phase_ & ~63) + 32;
}
}