Fix a typo when checking a touch is within the physical frame.
am: c597d61a61

Change-Id: Ia0b05ec79df8cd6ed779e37aedc5d60631e1cf74
diff --git a/services/inputflinger/InputReader.cpp b/services/inputflinger/InputReader.cpp
index f967a58..2df0090 100644
--- a/services/inputflinger/InputReader.cpp
+++ b/services/inputflinger/InputReader.cpp
@@ -6547,7 +6547,7 @@
 
 bool TouchInputMapper::isPointInsideSurface(int32_t x, int32_t y) {
     const float scaledX = x * mXScale;
-    const float scaledY = x * mYScale;
+    const float scaledY = y * mYScale;
     return x >= mRawPointerAxes.x.minValue && x <= mRawPointerAxes.x.maxValue
             && scaledX >= mPhysicalLeft && scaledX <= mPhysicalLeft + mPhysicalWidth
             && y >= mRawPointerAxes.y.minValue && y <= mRawPointerAxes.y.maxValue