aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifest.json2
-rw-r--r--plugins/ipc.lua6
2 files changed, 4 insertions, 4 deletions
diff --git a/manifest.json b/manifest.json
index baddd9a..28d6642 100644
--- a/manifest.json
+++ b/manifest.json
@@ -330,7 +330,7 @@
},
{
"description": "Adds inter-process communication support",
- "version": "0.2",
+ "version": "0.3",
"path": "plugins/ipc.lua",
"id": "ipc",
"mod_version": "3"
diff --git a/plugins/ipc.lua b/plugins/ipc.lua
index 16eab5d..428c4cf 100644
--- a/plugins/ipc.lua
+++ b/plugins/ipc.lua
@@ -828,12 +828,12 @@ system.wait_event = function(timeout)
local h = 0.5 / 2
local dt = math.ceil(t / h) * h - t
- system_wait_event(dt + 1 / config.fps)
+ return system_wait_event(dt + 1 / config.fps)
else
- system_wait_event()
+ return system_wait_event()
end
else
- system_wait_event(timeout)
+ return system_wait_event(timeout)
end
end