mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-29 09:01:54 +08:00
fixed win98 again on arduino
This commit is contained in:
@@ -151,6 +151,9 @@ class UsbMouseAbsolute {
|
||||
|
||||
void begin() {
|
||||
_mouse.begin();
|
||||
#ifdef HID_USB_ABS_WIN98_FIX
|
||||
_mouse.setWin98Fix(true);
|
||||
#endif
|
||||
}
|
||||
|
||||
void clear() {
|
||||
@@ -161,11 +164,7 @@ 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) {
|
||||
|
||||
Reference in New Issue
Block a user