Skip to content

Commit 873d879

Browse files
committed
Override the (S)VGA blanking calculation for the S3 Trio32, Trio64, Trio64V+, and Trio64 V2/DX.
1 parent 4b8b26b commit 873d879

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/video/vid_s3.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4093,6 +4093,11 @@ s3_recalctimings(svga_t *svga)
40934093
}
40944094
}
40954095
}
4096+
4097+
if ((s3->chip == S3_TRIO32) || (s3->chip == S3_TRIO64))
4098+
svga->hoverride = 1;
4099+
else
4100+
svga->hoverride = 0;
40964101
}
40974102

40984103
static void
@@ -4271,6 +4276,8 @@ s3_trio64v_recalctimings(svga_t *svga)
42714276
break;
42724277
}
42734278
}
4279+
4280+
svga->hoverride = 1;
42744281
}
42754282

42764283
static void

0 commit comments

Comments
 (0)