diff --git a/Windows/Gopher/Gopher.cpp b/Windows/Gopher/Gopher.cpp index 32b47f0..1826057 100644 --- a/Windows/Gopher/Gopher.cpp +++ b/Windows/Gopher/Gopher.cpp @@ -537,7 +537,10 @@ void Gopher::handleMouseMovement() y -= dy; _yRest = y - (float)((int)y); - SetCursorPos((int)x, (int)y); //after all click input processing + if ((int)x && (int)y) // Do not send input every 16ms when there is no mouse activatives + { + SetCursorPos((int)x, (int)y); //after all click input processing + } } // Description: