summaryrefslogtreecommitdiff
path: root/hid/src/usb/hid.h
diff options
context:
space:
mode:
Diffstat (limited to 'hid/src/usb/hid.h')
-rw-r--r--hid/src/usb/hid.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/hid/src/usb/hid.h b/hid/src/usb/hid.h
index f40cbf36..51b14b96 100644
--- a/hid/src/usb/hid.h
+++ b/hid/src/usb/hid.h
@@ -161,7 +161,11 @@ class UsbMouseAbsolute {
void sendMove(int x, int y) {
CHECK_HID_EP;
+#ifdef HID_USB_ABS_WIN98_FIX
+ _mouse.moveTo(x << 1, y << 1);
+#else
_mouse.moveTo(x, y);
+#endif
}
void sendWheel(int delta_y) {