Merge pull request #6434 from pixel-jupiter/pcjr-hshift-fix

PCjr: Fix inverted horizontal screen movement
This commit is contained in:
Miran Grča
2025-11-04 07:21:46 +01:00
committed by GitHub

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;