mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-03 01:50:57 +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"
|
||||
local t = create(...)
|
||||
return function(...)
|
||||
local results = { resume(t, ...) }
|
||||
if results[1] then
|
||||
return select(2, unpack(results))
|
||||
local r = { resume(t, ...) }
|
||||
if r[1] then
|
||||
return select(2, unpack(r))
|
||||
else
|
||||
error(results[2], 2)
|
||||
error(r[2], 2)
|
||||
end
|
||||
end
|
||||
";
|
||||
|
|
Loading…
Add table
Reference in a new issue