From e5025d6f5c09a2b3494eb6414fc1d0ed4a592a29 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 13 Dec 2020 13:37:29 +0100 Subject: [PATCH] Increased the size of the (S)VGA CRTC array to 256 elements (was 128), required by the S3 ViRGE. --- src/include/86box/vid_svga.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/86box/vid_svga.h b/src/include/86box/vid_svga.h index ca7ae4c21..4da5d924e 100644 --- a/src/include/86box/vid_svga.h +++ b/src/include/86box/vid_svga.h @@ -124,7 +124,7 @@ typedef struct svga_t int override; void *p; - uint8_t crtc[128], gdcreg[64], attrregs[32], seqregs[64], + uint8_t crtc[256], gdcreg[64], attrregs[32], seqregs[64], egapal[16], *vram, *changedvram;