From 21c50501b0def1bbbddfe940934b2ddfb917d60c Mon Sep 17 00:00:00 2001 From: Andrew Riedi Date: Wed, 24 Dec 2008 14:35:39 -0800 Subject: [PATCH] winex11.drv: Calculate the cursor bitmap offsets in a way consistent with user32. --- dlls/winex11.drv/mouse.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/winex11.drv/mouse.c b/dlls/winex11.drv/mouse.c index b79f149..728a8cd 100644 --- a/dlls/winex11.drv/mouse.c +++ b/dlls/winex11.drv/mouse.c @@ -436,10 +436,10 @@ static XcursorImage *create_cursor_image( CURSORICONINFO *ptr ) unsigned char tmp; BOOL alpha_zero = TRUE; - and_width_bytes = ptr->nWidth / 8; - xor_width_bytes = and_width_bytes * ptr->bBitsPerPixel; + and_width_bytes = 2 * ((ptr->nWidth+15) / 16); + xor_width_bytes = ptr->nWidthBytes; - and_size = ptr->nWidth * ptr->nHeight / 8; + and_size = ptr->nHeight * and_width_bytes; and_ptr = and_bits = (unsigned char *)(ptr + 1); xor_ptr = xor_bits = and_ptr + and_size; -- 1.5.6.3