From e8266cd716aa9ef5fa690c93b6012e39f774b317 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 18 Nov 2020 16:21:09 +0100 Subject: [PATCH] Another Banshee cursor fix. --- src/video/vid_voodoo_banshee.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video/vid_voodoo_banshee.c b/src/video/vid_voodoo_banshee.c index 5676a64d2..1a94aaf2d 100644 --- a/src/video/vid_voodoo_banshee.c +++ b/src/video/vid_voodoo_banshee.c @@ -1604,7 +1604,7 @@ void banshee_hwcursor_draw(svga_t *svga, int displine) /*X11 mode*/ for (x = 0; x < 64; x += 8) { - if (x_off > (32-8)) + if (x_off > -8) { for (xx = 0; xx < 8; xx++) { @@ -1624,7 +1624,7 @@ void banshee_hwcursor_draw(svga_t *svga, int displine) /*Windows mode*/ for (x = 0; x < 64; x += 8) { - if (x_off > (32-8)) + if (x_off > -8) { for (xx = 0; xx < 8; xx++) {