Pitch fix for Mach8/32.

Fix minor bug in the pitch when it was not being issued correctly in the Mach8/32.
This commit is contained in:
TC1995
2023-08-15 22:47:29 +02:00
parent 06e4382c2d
commit cf7b49a52f

View File

@@ -3877,9 +3877,7 @@ mach_accel_out(uint16_t port, uint8_t val, mach_t *mach)
case 0x76ee:
case 0x76ef:
WRITE8(port, mach->accel.ge_pitch, val);
if (port & 1)
dev->ext_pitch = ((mach->accel.ge_pitch & 0xff) << 3);
dev->ext_pitch = ((mach->accel.ge_pitch & 0xff) << 3);
svga_recalctimings(svga);
break;