1
0
mirror of https://github.com/kepler155c/opus synced 2025-12-17 05:38:07 +00:00

builder improvements - resource manager

This commit is contained in:
kepler155c@gmail.com
2017-07-02 10:05:10 -04:00
parent 7f99c0c69a
commit 027f386ed1
9 changed files with 1009 additions and 707 deletions

View File

@@ -153,9 +153,9 @@ function Event.pullEvents(...)
end
else
while true do
local e = { os.pullEvent() }
local e = { os.pullEventRaw() }
Event.processEvent(e)
if exitPullEvents or e == 'terminate' then
if exitPullEvents or e[1] == 'terminate' then
break
end
end