summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorAlex Deucher <alex@cube.(none)>2008-03-20 09:14:41 -0400
committerAlex Deucher <alex@cube.(none)>2008-03-20 09:14:41 -0400
commitf8c1eb29e28818895d744c4e1d6897353d51790b (patch)
tree2a6d22b066ac796a37962772709c0bf993d2ba90 /hw
parent267352579612155adfd4743432d6569b2cdeebde (diff)
Revert "Fix RandR 1.2 driver interface conversion of two colour cursors to ARGB"
This reverts commit 267352579612155adfd4743432d6569b2cdeebde. Pushed the wrong patch.
Diffstat (limited to 'hw')
-rw-r--r--hw/xfree86/modes/xf86Cursors.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/xfree86/modes/xf86Cursors.c b/hw/xfree86/modes/xf86Cursors.c
index 4fe94f3c6..08cf78d82 100644
--- a/hw/xfree86/modes/xf86Cursors.c
+++ b/hw/xfree86/modes/xf86Cursors.c
@@ -137,9 +137,7 @@ cursor_bitpos (int flags, int x, Bool mask)
mask = !mask;
if (flags & HARDWARE_CURSOR_NIBBLE_SWAPPED)
x = (x & ~3) | (3 - (x & 3));
-#if X_BYTE_ORDER == X_LITTLE_ENDIAN
if (flags & HARDWARE_CURSOR_BIT_ORDER_MSBFIRST)
-#endif
x = (x & ~7) | (7 - (x & 7));
if (flags & HARDWARE_CURSOR_SOURCE_MASK_INTERLEAVE_1)
x = (x << 1) + mask;