summaryrefslogtreecommitdiff
path: root/hid/src/main.cpp
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2018-08-01 17:31:23 +0300
committerDevaev Maxim <[email protected]>2018-08-01 17:31:23 +0300
commit9a5c583f808f7167a5a630d675c195a4a7ded2aa (patch)
tree904f4250943e04aa0f8864ccb7785c9618ece058 /hid/src/main.cpp
parentcb8e5efbc74343a932a712444c5d7f017094cbe2 (diff)
mouse support
Diffstat (limited to 'hid/src/main.cpp')
-rw-r--r--hid/src/main.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/hid/src/main.cpp b/hid/src/main.cpp
index 32f7affa..e58096e8 100644
--- a/hid/src/main.cpp
+++ b/hid/src/main.cpp
@@ -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);
}