fixed io closing files and stuff
This commit is contained in:
parent
3c142e6e2a
commit
2c61a6150b
@ -6,9 +6,12 @@ function io.open(n,m)
|
|||||||
local h=fs.open(n,m)
|
local h=fs.open(n,m)
|
||||||
if h and m:sub(1,1) == "w" then
|
if h and m:sub(1,1) == "w" then
|
||||||
bt=buffer.ucreate()
|
bt=buffer.ucreate()
|
||||||
function bt.write(d)
|
function bt.write(_,d)
|
||||||
return fs.write(h,d)
|
return fs.write(h,d)
|
||||||
end
|
end
|
||||||
|
function bt.close()
|
||||||
|
return fs.close(h)
|
||||||
|
end
|
||||||
return bt
|
return bt
|
||||||
elseif h and m:sub(1,1) == "r" then
|
elseif h and m:sub(1,1) == "r" then
|
||||||
bt = buffer.ucreate()
|
bt = buffer.ucreate()
|
||||||
|
Loading…
Reference in New Issue
Block a user