PCjr: Fix inverted horizontal screen movement

This commit is contained in:
pixel-jupiter
2025-11-04 07:43:51 +03:00
parent f5049e4cc8
commit c490e3e14c

View File

@@ -269,7 +269,7 @@ vid_get_h_overscan_delta(pcjr_t *pcjr)
break;
}
ret = pcjr->crtc[0x02] - def;
ret = def - pcjr->crtc[0x02];
if (ret < -8)
ret = -8;