forked from VoxeLibre/VoxeLibre
Merge pull request 'Fix TGA file writing on Windows' (#1985) from fix-tga-file-writing-on-windows into master
Reviewed-on: MineClone2/MineClone2#1985 Reviewed-by: AFCMS <afcms@noreply.git.minetest.land>
This commit is contained in:
commit
c2ae28aec1
|
@ -84,7 +84,7 @@ function image:encode()
|
|||
end
|
||||
|
||||
function image:save(filename)
|
||||
local f = assert(io.open(filename, "w"))
|
||||
local f = assert(io.open(filename, "wb"))
|
||||
f:write(self.data)
|
||||
f:close()
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue