1
0
Fork 0
mirror of https://github.com/Reuh/ubiquitousse.git synced 2025-10-27 17:19:31 +00:00
This commit is contained in:
Reuh 2016-12-25 21:23:39 +01:00
parent c0db856b82
commit 08afbe1d6d

View file

@ -91,7 +91,7 @@ add(uqt.input, {
error("Unknown button identifier: "..id) error("Unknown button identifier: "..id)
end end
end end
return unpack(ret) return table.unpack(ret)
end, end,
axisDetector = function(...) axisDetector = function(...)
@ -197,7 +197,7 @@ add(uqt.input, {
error("Unknown axis identifier: "..id) error("Unknown axis identifier: "..id)
end end
end end
return unpack(ret) return table.unpack(ret)
end, end,
buttonsInUse = function(threshold) buttonsInUse = function(threshold)
@ -249,7 +249,7 @@ add(uqt.input, {
table.insert(ret, id) table.insert(ret, id)
end end
end end
return unpack(ret) return table.unpack(ret)
end, end,
axisName = function(...) axisName = function(...)
@ -311,7 +311,7 @@ add(uqt.input, {
table.insert(ret, id) table.insert(ret, id)
end end
end end
return unpack(ret) return table.unpack(ret)
end end
}) })