From 5e4706564a2da08e2451d628cc15e746e17e1bc4 Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 22 Oct 2020 14:50:23 +0200 Subject: [PATCH] Hardware cursor and DAC Hardware cursor Y offsets now default to 0 instead of 32, fixes hardware cursor in some cases on the S3 928 and Vision964. --- src/video/vid_svga.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/video/vid_svga.c b/src/video/vid_svga.c index f92021165..0f6c37dbb 100644 --- a/src/video/vid_svga.c +++ b/src/video/vid_svga.c @@ -912,10 +912,8 @@ svga_init(const device_t *info, svga_t *svga, void *p, int memsize, svga->overlay_draw = overlay_draw; svga->hwcursor.xsize = svga->hwcursor.ysize = 32; - svga->hwcursor.yoff = 32; svga->dac_hwcursor.xsize = svga->dac_hwcursor.ysize = 32; - svga->dac_hwcursor.yoff = 32; svga->translate_address = NULL; svga->ksc5601_english_font_type = 0;