From 6bbd925dbc33c3257c325a98984eff58615b78d0 Mon Sep 17 00:00:00 2001 From: hippoz Date: Mon, 8 Nov 2021 19:27:34 +0200 Subject: [PATCH] hopefully fix relative movement for chrome mobile --- InputController.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InputController.py b/InputController.py index d580d62..f471549 100644 --- a/InputController.py +++ b/InputController.py @@ -16,8 +16,8 @@ class InputController(): }) # Relative mouse movement self.parser.add_handler("r", { - "x": "int", - "y": "int" + "x": "float", + "y": "float" }) # Mouse relative scroll self.parser.add_handler("s", {