mirror of
https://github.com/86Box/86Box.git
synced 2026-02-23 01:48:21 -07:00
Merge pull request #6434 from pixel-jupiter/pcjr-hshift-fix
PCjr: Fix inverted horizontal screen movement
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user