OC-MultICE/modules/debug/evout.lua

10 lines
274 B
Lua
Raw Normal View History

2017-04-19 02:40:25 +10:00
s("evp",function()
while true do
if ev ~= nil and ev[1] ~= "display" and ev[1] ~= "key_down" and ev[1] ~= "key_up" and ev[1] ~= "screen_resized" and ev[1] ~= "modem_message" and ev[1] ~= "sendmsg" then
-- ns(T.unpack(evs))
print(T.unpack(ev))
2017-04-19 02:40:25 +10:00
end
C.yield()
end
2017-04-19 02:40:25 +10:00
end)