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

Fixed: blinking means ink vanishing and appearing. Nothing else.

This commit is contained in:
Thomas Harte 2016-10-24 21:58:15 -04:00
parent cf5685abf3
commit 30d4a7c662

View File

@ -116,7 +116,7 @@ void VideoOutput::run_for_cycles(int number_of_cycles)
}
uint8_t inverse_mask = (control_byte & 0x80) ? 0x77 : 0x00;
if(_blink_text) inverse_mask ^= (_frame_counter&32) ? 0x77 : 0x00;
if(_blink_text && (_frame_counter&32)) pixels = 0;
if(control_byte & 0x60)
{