mirror of
https://github.com/86Box/86Box.git
synced 2025-01-23 09:42:47 -05:00
Remove an unnecessary subtraction proven to be wrong by the S3 and IBM documentation and that was a result of VGADOC being vague.
This commit is contained in:
parent
3010ce4f8a
commit
553e58f8ef
1 changed files with 1 additions and 1 deletions
|
@ -617,7 +617,7 @@ svga_recalctimings(svga_t *svga)
|
||||||
svga->vblankstart |= 0x200;
|
svga->vblankstart |= 0x200;
|
||||||
svga->vblankstart++;
|
svga->vblankstart++;
|
||||||
|
|
||||||
svga->hdisp = svga->crtc[1] - ((svga->crtc[3] & 0x60) >> 5);
|
svga->hdisp = svga->crtc[1];
|
||||||
svga->hdisp++;
|
svga->hdisp++;
|
||||||
|
|
||||||
svga->htotal = svga->crtc[0];
|
svga->htotal = svga->crtc[0];
|
||||||
|
|
Loading…
Reference in a new issue