Skip to content

Commit

Permalink
Override the (S)VGA blanking calculation for the S3 Trio32, Trio64, T…
Browse files Browse the repository at this point in the history
…rio64V+, and Trio64 V2/DX.
  • Loading branch information
OBattler committed Feb 18, 2024
1 parent 4b8b26b commit 873d879
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/video/vid_s3.c
Original file line number Diff line number Diff line change
Expand Up @@ -4093,6 +4093,11 @@ s3_recalctimings(svga_t *svga)
}
}
}

if ((s3->chip == S3_TRIO32) || (s3->chip == S3_TRIO64))
svga->hoverride = 1;
else
svga->hoverride = 0;
}

static void
Expand Down Expand Up @@ -4271,6 +4276,8 @@ s3_trio64v_recalctimings(svga_t *svga)
break;
}
}

svga->hoverride = 1;
}

static void
Expand Down

0 comments on commit 873d879

Please sign in to comment.