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).
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user