From 1cf38cf027f057431e9e80608cf0f91ab22cffdf Mon Sep 17 00:00:00 2001 From: jgmdev Date: Tue, 2 May 2023 14:34:57 -0400 Subject: IPC: return from overriden system.wait_event --- manifest.json | 2 +- plugins/ipc.lua | 6 +++--- 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 -- cgit v1.2.3