From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <069e379061d75fb2d08fbb1be54e4542@plan9.bell-labs.com> To: 9fans@cse.psu.edu Subject: Re: [9fans] South bridge not found From: "Russ Cox" MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Tue, 22 Oct 2002 02:29:09 -0400 Topicbox-Message-UUID: 09924e60-eacb-11e9-9e20-41e7f4b1d025 > The problem is the left-half and right-half of the cursor are interchanged > each other, that is right-half and then left-half of the cursor. I don't know > how to solve this problem, of course, we can change the cursor shape to > adujust just for this card... That makes the problem a lot easier. In /sys/src/9/pc/vganvidia.c:/^nvidiacurload, try changing c = (curs->clr[2 * i] << 8) | curs->clr[2 * i+1]; s = (curs->set[2 * i] << 8) | curs->set[2 * i+1]; to c = (curs->clr[2*i+1] << 8) | curs->clr[2*i]; s = (curs->set[2*i+1] << 8) | curs->set[2*i]; and see if it fixes your problem. (I will be surprised, but hey, you never know.) Maybe we need to switch byte order depending on the particular card. Russ