summaryrefslogtreecommitdiff
path: root/hid/src/main.cpp
diff options
context:
space:
mode:
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);
}