fix bug in eventhook for KT

* no return
* it is value that should be changed
pull/2/merge
eureka 12 years ago committed by Qingping Hou
parent b253a774f6
commit 424776b564

@ -272,11 +272,12 @@ function Input:init()
--@TODO handle coordinates properly after --@TODO handle coordinates properly after
--screen rotate. (houqp) --screen rotate. (houqp)
if ev.code == ABS_MT_POSITION_X then if ev.code == ABS_MT_POSITION_X then
ev.code = math.round(ev.code * (600/4095)) ev.value = math.round(ev.value * (600/4095))
elseif ev.code == ABS_MT_POSITION_Y then elseif ev.code == ABS_MT_POSITION_Y then
ev.code = math.round(ev.code * (800/4095)) ev.value = math.round(ev.value * (800/4095))
end end
end end
return ev
end end
print("Auto-detected Kindle Touch") print("Auto-detected Kindle Touch")
elseif dev_mod == "Kindle4" then elseif dev_mod == "Kindle4" then

Loading…
Cancel
Save