1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-11-13 00:27:00 -05:00

made liblz16 happier on OpenOS when decompressing smaller files

This commit is contained in:
XeonSquared 2021-05-26 17:46:17 +10:00
parent 2707ecc155
commit 6f1b673bec

View File

@ -13,7 +13,7 @@ local function readBuffer(fi)
if len < 1 then
return nil
end
coroutine.yield()
if os.sleep then os.sleep(0) else coroutine.yield() end
return lz.decompress(fi:read(len))
end
function stream.close()