From 2e8ee74b2ca63047a0805e09796e4d0798c767fc Mon Sep 17 00:00:00 2001 From: WS64 Date: Wed, 20 Aug 2014 20:45:56 +0200 Subject: [PATCH] Update input.lua --- frontend/ui/input.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/ui/input.lua b/frontend/ui/input.lua index d558e43bd..996bedd9a 100644 --- a/frontend/ui/input.lua +++ b/frontend/ui/input.lua @@ -38,6 +38,12 @@ local ABS_MT_WIDTH_MAJOR = 50 local ABS_MT_POSITION_X = 53 local ABS_MT_POSITION_Y = 54 +if KOBO_TOUCH_MIRRORED then + ABS_X = 01 + ABS_Y = 00 + ABS_MT_POSITION_X = 54 + ABS_MT_POSITION_Y = 53 +end local ABS_MT_TRACKING_ID = 57 local ABS_MT_PRESSURE = 58