diff options
author | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2006-07-27 15:28:42 +0100 |
---|---|---|
committer | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2006-07-27 15:28:42 +0100 |
commit | ac3ad32f667b306e771617d784648f7111743f1a (patch) | |
tree | ee329699d3f40abc1b729287dc9051becf8c5a58 /src/i830_cursor.c | |
parent | e786e2f9f3a4df31702736db6f68a44c9ebba546 (diff) |
Calculate allowable refresh rates on the private
mode data for each independent screen in mergedfb.
Lots of other fixes too.
Diffstat (limited to 'src/i830_cursor.c')
-rw-r--r-- | src/i830_cursor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/i830_cursor.c b/src/i830_cursor.c index 3786120d..1d7808b6 100644 --- a/src/i830_cursor.c +++ b/src/i830_cursor.c @@ -432,8 +432,8 @@ I830SetCursorPositionMerged(ScrnInfoPtr pScrn, int x, int y) temp2 |= ((x2 & CURSOR_POS_MASK) << CURSOR_X_SHIFT); temp2 |= ((y2 & CURSOR_POS_MASK) << CURSOR_Y_SHIFT); - OUTREG(CURSOR_A_POSITION, temp2); - OUTREG(CURSOR_B_POSITION, temp); + OUTREG(CURSOR_A_POSITION, temp); + OUTREG(CURSOR_B_POSITION, temp2); if (pI830->cursorOn) { if (hide) |