From 85f38ef7c0c7f4fb8c9e7b67d708e2f9173bb451 Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Fri, 17 Feb 2023 17:24:04 +0600 Subject: [PATCH] vid_mga: Fix opaque pattern blits --- src/video/vid_mga.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/vid_mga.c b/src/video/vid_mga.c index 344287ee2..b557d1ce5 100644 --- a/src/video/vid_mga.c +++ b/src/video/vid_mga.c @@ -2177,7 +2177,7 @@ mystique_accel_ctrl_write_l(uint32_t addr, uint32_t val, void *p) int x, y; for (y = 0; y < 8; y++) { - for (x = 0; x < 8; x++) + for (x = 0; x < 16; x++) mystique->dwgreg.pattern[y][x] = 1; } mystique->dwgreg.src[0] = 0xffffffff;