mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-04 18:40:59 +01:00
Change var name
This commit is contained in:
parent
89a25e42ed
commit
c653b73f75
1 changed files with 4 additions and 4 deletions
|
@ -29,11 +29,11 @@ yield()
|
||||||
const WRAP_IMPL_LUA: &str = r"
|
const WRAP_IMPL_LUA: &str = r"
|
||||||
local t = create(...)
|
local t = create(...)
|
||||||
return function(...)
|
return function(...)
|
||||||
local results = { resume(t, ...) }
|
local r = { resume(t, ...) }
|
||||||
if results[1] then
|
if r[1] then
|
||||||
return select(2, unpack(results))
|
return select(2, unpack(r))
|
||||||
else
|
else
|
||||||
error(results[2], 2)
|
error(r[2], 2)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
";
|
";
|
||||||
|
|
Loading…
Add table
Reference in a new issue