diff --git a/app/src/main/java/com/limelight/Game.java b/app/src/main/java/com/limelight/Game.java index 45c4d91c..c4d626e0 100644 --- a/app/src/main/java/com/limelight/Game.java +++ b/app/src/main/java/com/limelight/Game.java @@ -1308,8 +1308,7 @@ public class Game extends Activity implements SurfaceHolder.Callback, if (event.getActionMasked() == MotionEvent.ACTION_SCROLL) { // Send the vertical scroll packet - byte vScrollClicks = (byte) event.getAxisValue(MotionEvent.AXIS_VSCROLL); - conn.sendMouseScroll(vScrollClicks); + conn.sendMouseHighResScroll((short)(event.getAxisValue(MotionEvent.AXIS_VSCROLL) * 120)); } if ((changedButtons & MotionEvent.BUTTON_PRIMARY) != 0) {