From a27c4bc7a4f449648067e63a423a01c15cabb6b5 Mon Sep 17 00:00:00 2001 From: TC1995 Date: Sat, 21 Dec 2024 23:57:26 +0100 Subject: [PATCH] 8514/A change of the day (December 22nd, 2024) Fix nibble pixtrans on bitblt command (CMD 6), this makes icons and stuff on MS OS/2 1.10 Nokia's 8514 driver no longer glitchy (IBM's was already fine as is and it still is). --- src/video/vid_8514a.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/vid_8514a.c b/src/video/vid_8514a.c index 393d2ca04..810d403ab 100644 --- a/src/video/vid_8514a.c +++ b/src/video/vid_8514a.c @@ -285,7 +285,7 @@ ibm8514_accel_out_pixtrans(svga_t *svga, UNUSED(uint16_t port), uint32_t val, in if ((cmd >= 2) && (dev->accel.cmd & 0x1000)) val = (val >> 8) | (val << 8); } - if ((cmd <= 2) || (cmd == 4)) { + if ((cmd <= 2) || (cmd == 4) || ((cmd == 6))) { if ((dev->accel.cmd & 0x08) && (cmd >= 2)) monoxfer = val; else {