Changeset 38591 in vbox for trunk/src/VBox/Additions/x11/vboxmouse
- Timestamp:
- Aug 31, 2011 7:40:19 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 73786
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/vboxmouse/vboxmouse_15.c
r38274 r38591 61 61 enum 62 62 { 63 #if ABI_XINPUT_VERSION > SET_ABI_VERSION(2, 0)64 /* The X server does (to my mind) incorrect rounding, so we adjust our range to65 * compensate. */66 ADJUST_RANGE = 32,67 #else68 ADJUST_RANGE = 0,69 #endif70 63 /** The minumum value our device can return */ 71 RANGE_MIN = ADJUST_RANGE,64 RANGE_MIN = 0, 72 65 /** The maximum value our device can return */ 73 RANGE_MAX = 0xFFFF + ADJUST_RANGE66 RANGE_MAX = 0xFFFF 74 67 }; 75 68
Note:
See TracChangeset
for help on using the changeset viewer.