From 96ccd426ecb6fcbaa1ce76fa92e73211bd8fbff0 Mon Sep 17 00:00:00 2001 From: TC1995 Date: Sat, 3 Nov 2018 12:45:04 +0100 Subject: [PATCH] Applied the bug fix from John Elliot regarding the Sigma Color 400. --- src/video/vid_sigma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/vid_sigma.c b/src/video/vid_sigma.c index a22b26119..66fe48300 100644 --- a/src/video/vid_sigma.c +++ b/src/video/vid_sigma.c @@ -426,7 +426,7 @@ static void sigma_text80(sigma_t *sigma) cols[0] = (attr >> 4) | 16; } - if (drawcursor && !(x & 1)) { + if (drawcursor) { for (c = 0; c < 8; c++) { if (sigma->sigmamode & MODE_FONT16) buffer->line[sigma->displine][(x << 3) + c + 8] = cols[(fontdatm[chr][sigma->sc & 15] & (1 << (c ^ 7))) ? 1 : 0] ^ 0x0f;