remove unused call from gate init

This commit is contained in:
Redo 2022-11-04 13:16:30 -06:00
parent d95447b55d
commit 7e19e20caf

View File

@ -28,7 +28,6 @@ function Gate.new(objref, definition)
local cdata = ffi.new("char["..(ffi.sizeof("struct Gate") + ffi.sizeof("struct OutPort")*(#gate.ports+1)).."]")
gate.c = ffi.cast("struct Gate*", cdata)
gate.c.in_queue = 0
Gate.update_c_ports(gate)
return gate
end