Quote:
Originally Posted by Ken Maltby
My current line 84:
DEBUG("tev fed to GestureDetector|",tev.x.."|"..tev.y.."|"..tev.id.. "|"..tev.slot.."|"..tev.timev.sec.."|"..tev.timev. usec)
Are you guys talking about replacing all the ".." with "," ? Or just certain ones, like the trailing or leading ones? Or do you mean to replace the "," in ",tev.x.." with ".." to match the others?
|
When you're done line 84 in
gesturedetector.lua should look like this:
Code:
DEBUG("tev fed to GestureDetector|",tev.x,"|",tev.y,"|",tev.id,"|",tev.slot,"|",tev.timev.sec,"|",tev.timev.usec)
See the changes on github
here.