mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-25 18:30:21 +00:00
Fixed: blinking means ink vanishing and appearing. Nothing else.
This commit is contained in:
parent
cf5685abf3
commit
30d4a7c662
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user