Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1471c8f6 authored by The Android Open Source Project's avatar The Android Open Source Project
Browse files

am c664d183: Merge branch \'donut\' of ssh://android-git.corp.google.com:29

Merge commit 'c664d183'

* commit 'c664d183':
  don't use modulo
parents c11dbe78 c664d183
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -228,8 +228,10 @@ public final class MotionEvent implements Parcelable {
            if (mHistory != null) {
                float[] history = mHistory;
                int length = history.length;
                for (int i = 0; i < length; i++) {
                for (int i = 0; i < length; i += 4) {
                    history[i] *= scale;
                    history[i + 2] *= scale;
                    history[i + 3] *= scale;
                }
            }
        }