From 5ce5685c1ab27ab7408a3ef5954bf913df0fdca1 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 18 Nov 2020 16:18:45 +0100 Subject: [PATCH] Fixed Banshee hardware cursor offset. --- src/video/vid_voodoo_banshee.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/vid_voodoo_banshee.c b/src/video/vid_voodoo_banshee.c index bea894523..5676a64d2 100644 --- a/src/video/vid_voodoo_banshee.c +++ b/src/video/vid_voodoo_banshee.c @@ -656,7 +656,7 @@ static void banshee_ext_outl(uint16_t addr, uint32_t val, void *p) break; case Video_hwCurLoc: banshee->hwCurLoc = val; - svga->hwcursor.x = (val & 0x7ff) - 32; + svga->hwcursor.x = (val & 0x7ff) - 64; svga->hwcursor.y = ((val >> 16) & 0x7ff) - 64; if (svga->hwcursor.y < 0) {