mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-29 00:51:53 +08:00
mouse support
This commit is contained in:
@@ -42,7 +42,6 @@ INLINE void cmdMouseMoveEvent() { // 4 bytes
|
||||
x |= (int)CMD_SERIAL.read();
|
||||
int y = (int)CMD_SERIAL.read() << 8;
|
||||
y |= (int)CMD_SERIAL.read();
|
||||
AbsoluteMouse.moveTo(0, 0);
|
||||
AbsoluteMouse.moveTo(x, y);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user