From 2951f7f5cfc14463b6eb15efc6f1d1b00eb34709 Mon Sep 17 00:00:00 2001 From: Chips-fr Date: Sun, 10 Jan 2016 11:11:26 +0100 Subject: [PATCH] Remove filter of fast mouse mouve --- src/od-pandora/pandora.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/od-pandora/pandora.cpp b/src/od-pandora/pandora.cpp index 49f0e13f..6130970e 100644 --- a/src/od-pandora/pandora.cpp +++ b/src/od-pandora/pandora.cpp @@ -910,8 +910,10 @@ void handle_events (void) else { int mouseScale = currprefs.input_joymouse_multiplier / 2; +#ifndef RASPBERRY if(rEvent.motion.xrel > 20 || rEvent.motion.xrel < -20 || rEvent.motion.yrel > 20 || rEvent.motion.yrel < -20) break; +#endif lastmx += rEvent.motion.xrel * mouseScale; lastmy += rEvent.motion.yrel * mouseScale; if(rEvent.motion.x == 0)