From 30d4a7c66272dba9a69acf46e0041ab3d5c1bd98 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 24 Oct 2016 21:58:15 -0400 Subject: [PATCH] Fixed: blinking means ink vanishing and appearing. Nothing else. --- Machines/Oric/Video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Oric/Video.cpp b/Machines/Oric/Video.cpp index ba2b25c07..ec31bd1a6 100644 --- a/Machines/Oric/Video.cpp +++ b/Machines/Oric/Video.cpp @@ -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) {