Bob Tanner <tanner at real-time.com> wrote: > > Quoting Mike Hicks (hick0088 at tc.umn.edu): > > I'm having problem with X in xinerama mode. My 2nd monitor gives me a > ugly block cursor for the mouse. > > The config worked fine with 4.0.3. I have played with the hardware and > software cursor stuff. But nothing fixes the problem. There's an extremely remote chance that this could fix the problem. I found it in RedHat's 4.0.3 source RPM.. The only reason I'm suggesting it is because it has `cursor' in the name of the patch.. (Sylpheed's going to mangle this, obviously..) --- XFree86-4.0.3/xc/programs/Xserver/hw/xfree86/drivers/mga/mga_dacG.c.mga-hwcursor-fix Sun Mar 25 22:21:18 2001 +++ XFree86-4.0.3/xc/programs/Xserver/hw/xfree86/drivers/mga/mga_dacG.c Sun Mar 25 22:22:14 2001 @@ -825,7 +825,10 @@ while( INREG( MGAREG_Status ) & 0x08 ); /* Output position - "only" 12 bits of location documented */ - OUTREG( RAMDAC_OFFSET + MGA1064_CUR_XLOW, (y << 16) | (x & 0xFFFF)); + OUTREG8( RAMDAC_OFFSET + MGA1064_CUR_XLOW, (x & 0xFF)); + OUTREG8( RAMDAC_OFFSET + MGA1064_CUR_XHI, (x & 0xF00) >> 8); + OUTREG8( RAMDAC_OFFSET + MGA1064_CUR_YLOW, (y & 0xFF)); + OUTREG8( RAMDAC_OFFSET + MGA1064_CUR_YHI, (y & 0xF00) >> 8); } static void -- _ _ _ _ _ ___ _ _ _ ___ _ _ __ Grow your own dope... / \/ \(_)| ' // ._\ / - \(_)/ ./| ' /(__ plant a person. \_||_/|_||_|_\\___/ \_-_/|_|\__\|_|_\ __) [ Mike Hicks | http://umn.edu/~hick0088/ | mailto:hick0088 at tc.umn.edu ] -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 232 bytes Desc: not available Url : http://shadowknight.real-time.com/pipermail/tclug-list/attachments/20010614/15344955/attachment.pgp